Hacker News new | ask | show | jobs
by Theriac25 4575 days ago
Doesn't seem to support backquotes? For example

    for x in `ls ~/foo`; do echo $x; done
doesn't yield anything remotely interesting.
1 comments

New style subshells aren't supported (yet) either:

   for x in $(ls ~/foo); do echo $x; done