|
|
|
|
|
by Flimm
246 days ago
|
|
Does the library handle arguments that begin with a dash? Does this code print out the contents of the file named `--help`, or does it print the documentation for the `cat` command? filename = "--help"
await sh(t"cat {filename}")
|
|