diff options
-rw-r--r-- | README.md | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/README.md b/README.md index ec8b396..2c974f7 100644 --- a/README.md +++ b/README.md | |||
@@ -54,27 +54,27 @@ trainfuck -h|--help | |||
54 | trainfuck [-w WIDTH] [FLAGS...] INPUTFILE [-o OUTPUTFILE] | 54 | trainfuck [-w WIDTH] [FLAGS...] INPUTFILE [-o OUTPUTFILE] |
55 | 55 | ||
56 | Parameters: | 56 | Parameters: |
57 | INPUTFILE The trainfuck file to process. | 57 | INPUTFILE The trainfuck file to process. |
58 | If INPUTFILE ends in .tf or .trainfuck, it will be interpreted | 58 | If INPUTFILE ends in .tf or .trainfuck, it will be interpreted |
59 | as a TRAINFUCK file; if it ends in .bf or .brainfuck, it will | 59 | as a TRAINFUCK file; if it ends in .bf or .brainfuck, it will |
60 | be interpreted as a BRAINFUCK file. Otherwise, the file will | 60 | be interpreted as a BRAINFUCK file. Otherwise, the file will |
61 | be assumed to be the default filetype (trainfuck). | 61 | be assumed to be the default filetype (trainfuck). |
62 | 62 | ||
63 | -w WIDTH Set the brainfuck output width (default: 42). | 63 | -w WIDTH Set the brainfuck output width (default: 42). |
64 | -o OUTPUTFILE Where to send transpiled brainfuck (default: /dev/stderr). | 64 | -o OUTPUTFILE Where to send transpiled brainfuck (default: /dev/stderr). |
65 | -- Stop processing arguments; interpret the rest as filenames | 65 | -- Stop processing arguments; interpret the rest as filenames |
66 | 66 | ||
67 | FLAGS: | 67 | FLAGS: |
68 | -h, --help Show this help | 68 | -h, --help Show this help |
69 | -c, --comments Show comments (default) | 69 | -c, --comments Show comments (default) |
70 | -C, --no-comments Hide comments | 70 | -C, --no-comments Hide comments |
71 | -z, --compact Show "compact" comments (default) | 71 | -z, --compact Show "compact" comments (default) |
72 | -Z, --no-compact Show "wide" comments | 72 | -Z, --no-compact Show "wide" comments |
73 | -x, --execute Execute trainspiled brainfuck | 73 | -x, --execute Execute trainspiled brainfuck |
74 | -X, --no-execute Only trainspile, do not execute (default) | 74 | -X, --no-execute Only trainspile, do not execute (default) |
75 | -t, --trainfuck Force TRAINFUCK mode: interpret files as trainfuck | 75 | -t, --trainfuck Force TRAINFUCK mode: interpret files as trainfuck |
76 | -b, --brainfuck Force BRAINFUCK mode: interpret files as brainfuck | 76 | -b, --brainfuck Force BRAINFUCK mode: interpret files as brainfuck |
77 | -q, --quiet Don't print any more than is necessary | 77 | -q, --quiet Don't print any more than is necessary |
78 | ``` | 78 | ``` |
79 | 79 | ||
80 | ## INSTALL | 80 | ## INSTALL |