1. # >: 把一个命令的【标准输出】重定向到其他地方
    2. cat /proc/cpuinfo > file.txt # 覆盖 file.txt 的内容
    3. cat /proc/cpuinfo >> file.txt # append
    4. # <: 用指定的内容作为【标准输入】
    5. cat < file.txt
    6. # /dev/null 黑洞~
    7. cat longfile.txt > /dev/null
    8. # Stream Abbreviation Number
    9. # Standard input stdin 0
    10. # Standard output stdout 1
    11. # Standard error, or error stream stderr 2
    12. ls 1> file.txt # stdout→ file.txt, 并覆盖
    13. ls > file.txt # 同上
    14. ls 2> file.txt # stderr → file.txt, 并覆盖
    15. ls 1>> file.txt # stdout → file.txt,追加内容
    16. ls >> file.txt # 同上
    17. ls 2>> file.txt # stderr → file.txt,追加内容
    18. ls &> file.txt # stdin & stdout → file.txt, 并覆盖
    19. ls &>> file.txt # stdin & stdout → file.txt,追加内容
    20. ls 2>&1 # stderr → stdout
    21. ls 1>&2 # stdout → stderr
    22. ls > file.txt 2>&1 # stderr → stdout → file.txt
    23. ls 2> file.txt 1>&2 # stdout → stderr → file.txt