8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Useless use of cat sometimes makes a script easier to read. It's also super easy to detect and optimize away.
splice -x filename
cat
splice
cat filename
splice / / filename
splice -o filename
The text was updated successfully, but these errors were encountered:
Give zec builtin a -x flag for trivial uses
580194d
and test its return statuses better. #52
qual(command): Rewrite cat as splice when possible
125404b
Issue #52 Issue #159
No branches or pull requests
Useless use of cat sometimes makes a script easier to read. It's also super easy to detect and optimize away.
splice -x filename
a valid command.cat
commands withsplice
builtin commands.cat filename
-> just open the input file.splice / / filename
.splice -x filename
.splice -o filename
-> just open the output file.The text was updated successfully, but these errors were encountered: