You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi
I was wondering what the arguments[ -s num ] and [ -p num ] mean in the command
$ python ftable.py [ -v ] [ -s num ] [ -p num ] [ infile [ outfile ] ]
Thanks!
The text was updated successfully, but these errors were encountered:
-s num is skip. so it skips the first num characters. e.g. you have the string abcdefg and use -s 2 it will use only cdefg
-p num is period. it's useful if you think the encrypted text uses something like vigenere (encryption system with a fixed-length key). default period is 1. e.g. on input ababab and -p 2 it will use aaa. on -s 1 -p 2 it will use bbb
Hi
I was wondering what the arguments[ -s num ] and [ -p num ] mean in the command
$ python ftable.py [ -v ] [ -s num ] [ -p num ] [ infile [ outfile ] ]
Thanks!
The text was updated successfully, but these errors were encountered: