ios_system icon indicating copy to clipboard operation
ios_system copied to clipboard

Better command line input/output management

Open holzschu opened this issue 7 years ago • 1 comments
trafficstars

Parsing the command line is done for the most common cases (< input, > output, &> error and 2>&1.

Two things are missing (besides piping, issue #6 and appending, issue #4):

  • the ability to enter input on the command line: lua fact.lua <<< "9"
  • checking whether 2>&1 is before or after > output. The results are supposed to be different.

See https://en.wikipedia.org/wiki/Redirection_(computing) for detailed description.

holzschu avatar Jan 14 '18 14:01 holzschu

https://github.com/holzschu/a-shell/issues/94 seems related to this!