diff options
Diffstat (limited to 'sys/src/cmd/5e/5e.c')
| -rw-r--r-- | sys/src/cmd/5e/5e.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/src/cmd/5e/5e.c b/sys/src/cmd/5e/5e.c index be0f8dabd..7da70c873 100644 --- a/sys/src/cmd/5e/5e.c +++ b/sys/src/cmd/5e/5e.c @@ -48,7 +48,7 @@ cleanup(void) static void usage(void) { - fprint(2, "usage: 5e [-npb] text [...]\n"); + fprint(2, "usage: 5e [-npbf] text [...]\n"); exits(nil); } @@ -103,6 +103,7 @@ main(int argc, char **argv) case 'n': nflag++; break; case 'p': pflag++; break; case 'b': bflag++; break; + case 'f': vfp = 1; break; default: usage(); } ARGEND; if(argc < 1) |
