Narthex

Modular dictionary generator
git clone git://mcdim.xyz/Narthex.git
Log | Files | Refs | README | LICENSE

napp.1 (1034B)


      1 .\" Manpage for napp
      2 
      3 .TH man 8 "10 Oct 2021" "1.1.2" "napp manual page"
      4 .SH NAME
      5 napp \- Narthex appender 
      6 .SH SYNOPSIS
      7 cat dictionary.txt | napp [OPTIONS] > output.txt
      8 .SH DESCRIPTION
      9 napp appends extra symbols or words to the end of each line.
     10 
     11 .SH OPTIONS
     12 -c	specify charset
     13 
     14 -w	specify wordlist
     15 
     16 -s	salt mode (do not print stdin as-is in the beginning)
     17 
     18 -f	insert to the front of the line, instead of appending
     19 
     20 -v	print version and exit
     21 
     22 -h	print help panel and exit
     23 
     24 .SH EXAMPLES
     25 
     26 This will append the symbols separately to the end of each line of stdin, after printing stdin as-is, and directs the output to output.txt
     27 
     28 cat dict.txt | napp -c #@?& > output.txt
     29 
     30 The following will insert the words of the file2.txt (-w) before each line (-f) of file1.txt, without first printing the stdin as-is (-s), and redirects the output to output.txt 
     31 
     32 cat file1.txt | napp -w file2.txt -f -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)