摘要: 使用别名: [student@myhost ~]$ alias finda="find . -name a" [student@myhost ~]$ finda ./a alias只是暂时的,如想永久保持只需在.bashrc中加入: alias finda="find . -name a" 取消别名 阅读全文
posted @ 2019-01-19 23:34 epiphanyy 阅读(10) 评论(0) 推荐(0)
摘要: 文件描述符: 0:stdin(标准输入) 1:stdout(标准输出) 2:stderr(标准错误) 成功和不成功的命令: [student@myhost ~]$ ls + ls: cannot access +: No such file or directory [student@myhost 阅读全文
posted @ 2019-01-19 22:53 epiphanyy 阅读(18) 评论(0) 推荐(0)