|
|
|
|
|
by dserodio
5077 days ago
|
|
Besides the awesome TAB completion, here are a few features that I use daily: - Keyboard navigation for TAB completion (using the arrows) - Coloured TAB completion - "for" one-liners:
for f in /*.py; wc -l $f - Named directories (cd ~named_dir) (edit: formatting) |
|
for f in *.py; do wc -l $f; done
also, you can do something like
for f in `find project_name`; do wc -l $f; done t work on the output of another command.
Cheers!