$ echo -e "1\t2\t3" > 1 2 3
$ echo -e "\e[1;31m test \e[0m"
> test
$ echo -e "\e[1;41m test \e[0m"
> test
$ printf "%-5s %-5s %-5s\n" This is test > This is test
$ pgrep bash > 8111 $ cat /proc/8111/environ > USER=aaaHOME=/u/aaaPATH=/bin...... $cat /proc/8111/environ|tr ‘\0‘ ‘\n‘ > USER=aaa HOME=/u/aaa PATH=/bin ....
bash: command types and commands
原文:https://www.cnblogs.com/cc-2020/p/13782478.html