Extra credit 2: Support inverse pipes using parentheses, giving your shell a functional programming-like interface. In other words, instead of piping commands like ...
ps -ef | grep root | sort -n +1
... support a more functional style like...
sort(grep(ps -ef, root), -n, +1)
No comments:
Post a Comment