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
analogous to #604 -- words and ${}
${}
ls ;
command.Sentence
! ls
IR for redirects:
ls |& wc -l
ls 2>&1 | wc -l
myprog &> foo.txt
myprog >foo.txt 2>&1
parse_amp
Already mutated:
do_fork
Special case with __cat: $(< file)
__cat
$(< file)
This is mainly for simplifying the code, although it should also speed things up a little.
The text was updated successfully, but these errors were encountered:
Very similar to #761 , might be a dupe
Sorry, something went wrong.
No branches or pull requests
analogous to #604 -- words and
${}
ls ;
doesn't need to be acommand.Sentence
. That is only for translation/ linters / formatters.! ls
should not be a "pipeline" -- that's an artifact of the grammarIR for redirects:
ls |& wc -l
could be rewritten to primitive redirectsls 2>&1 | wc -l
myprog &> foo.txt
myprog >foo.txt 2>&1
parse_amp
: Implement shopt -s parse_amp #832Already mutated:
do_fork
for the process optimizationSpecial case with
__cat
:$(< file)
This is mainly for simplifying the code, although it should also speed things up a little.
The text was updated successfully, but these errors were encountered: