• 反引号`` -> 执行命令
      • a=expr 1 + 2
    • $() -> 执行命令
      • a=$(expr 1 + 2)
    • 花括号{}
      • {0..9} 产生列表 主要给for循环使用
      • 文件复制
        • cp -v /etc/passwd /etc/passwd.bak
        • cp -v /etc/passwd{,.bak}