Comment on Python 3.14.0parentComments−Flimm11moDoes 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}")
Comments
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?