nclean.1 (938B)
1 .\" Manpage for nclean 2 3 .TH man 8 "10 Oct 2021" "1.1.2" "nclean manual page" 4 .SH NAME 5 nclean \- Narthex cleaner 6 .SH SYNOPSIS 7 cat dictionary.txt | nclean [OPTIONS] > output.txt 8 .SH DESCRIPTION 9 nclean iterates over stdin and prints all lines that meet your specified criteria of length and charset. 10 11 .SH OPTIONS 12 -c print lines that have capitalised letters 13 14 -n print lines that have numbers 15 16 -s print lines that have special characters 17 18 -l print lines of length greater than or equal to that specified 19 20 -v print version and exit 21 22 -h print help panel and exit 23 24 .SH EXAMPLES 25 26 This will output only the lines of length >= 6 that include capital letters: 27 28 cat dictionary.txt | nclean -l 6 -c > output.txt 29 30 This will output only the lines that have special characters: 31 32 cat dictionary.txt | nclean -s > output.txt 33 34 .SH AUTHOR 35 Michael Constantine Dimopoulos <mk@mcdim.xyz> 36 37 https://mcdim.xyz 38 39 .SH LICENSE 40 GNU General Public License 3.0 (GPL-3.0)