Various Linux scripts.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 lines
258 B

#!/bin/bash
#Создан: Ср 18 май 2016 14:53:34
#Изменён: чт 17 окт 2019 13:01:07
#Дадаизатор текстов
tr ' ' '\n' <"$1" \
| grep -o -E '[а-яА-Яa-zA-Z]+' \
| shuf \
| head -n "${2:-500}" \
| fmt -w "${3:-80}"