Y
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
nailer
4575 days ago
New style subshells aren't supported (yet) either:
for x in $(ls ~/foo); do echo $x; done
link