课时44命令别名
命令别名
命令别名的概念:
命令别名的查看:alias
命令别名的设置:alias myls='ls -a'
课时45通配符
通配符
通配符都概念:
通配符是代表字符通用匹配的一种系统程序支持的特殊符号
常用通配符的使用:
“*”通配符的使用
eg: ls -l test.*
*是0至任意个
“?”通配符的使用
eg: ls -l test?.?
eg: ls -l test.???
1个?代表1个字符
“[ ]”通配符的使用
eg: ls -l test[0-9].txt
课时51管道的使用
标准设备文件
标准输入文件:stdin
标准输出文件:stdout
标准错误文件:stderr