Ubuntu BASH shell command tricks

BASH tricks 

1. TAB key, autocomplete

2. Piping output

e.g.: 

ls -al | less

ls -al | grep -i flower

history | less

3. Redirecting output

e.g.:

ls -l > directory_listing.txt

ls -l >> directory_listing.txt

ls -l > ~/file_list.txt

sort < ~/file_list.txt > ~/file_list_sorted.txt

4. Using Brace Expansion

e.g.:

mkdir Photo{a,b,c}

mkdir photo{A..Z}

rmdir photo{A..Z}

原文地址:https://www.cnblogs.com/wucg/p/1938280.html