./shell01.sh //运行脚本
/shell01/shell1.sh //绝对路径运行脚本
bash shell1.sh 或 source shell1.sh//非正常方式运行脚本
bash -x shell1.sh //查看脚本的运行情况,没有+号的是运行结果
bash -n shell1.sh //检测脚本语法

通配符中括号[ ]:单个字符 匹配
ll file[0-13].jpg //一共有13个文件,但是只能匹配两个


通配符花括号{ }:匹配字符串,只要逗号隔开都可以匹配,匹配不到的还会报错

rename:重命名
rename file1 test1 file1? //重命名file1为test1,然后匹配file1?实现批量重命名