ngen.1 (1009B)
1 .\" Manpage for ngen 2 3 .TH man 8 "28 Dec 2023" "1.0" "ngen manual page" 4 .SH NAME 5 napp \- Narthex appender 6 .SH SYNOPSIS 7 ngen [MIN] [MAX] [CHARS] 8 MAX must be greater than or equal to MIN 9 .SH DESCRIPTION 10 ngen generates permutations of given length & character set. As ngen works recursively, you may have to run 11 12 ulimit -s unlimited 13 14 to set the stack size to unlimited. 15 16 .SH OPTIONS 17 18 -v print version and exit 19 20 -h print help panel and exit 21 22 .SH EXAMPLES 23 24 This will generate all permutations of 'a', 'b', 'c', and 'd' of length 3, 4 & 5 and store them in the file output.txt 25 26 ngen 3 5 abcd > output.txt 27 28 The following will generate all permutatitions of '1', '2', '!' and '*' of length 5 and output them to standard output 29 30 ngen 5 5 12\!\* 31 32 The following will generate all permutatitions of '1', '2', and '3' of length 5, 6, 7, 8 and 9 and store them in output.txt 33 34 ngen 5 9 122331 35 36 .SH AUTHOR 37 Michael Constantine Dimopoulos <mk@mcdim.xyz> 38 39 https://mcdim.xyz 40 41 .SH LICENSE 42 GNU General Public License 3.0 (GPL-3.0)