标签:linux学习
在/sbin/(系统自动查找目录,即path所列出的目录)脚本a.sh开头:#! /bin/bash -f
那么执行a.sh -q实际上为:/bin/bash -f /sbin/a.sh -q
;用于连接多个命令,依次执行各个命令,如果跟&则表示命令在后台运行,即不执行完该命令就继续往下执行
tr:
[root@localhost ~]# tr "a-z" "A-Z"
dfdfd
DFDFD
[root@localhost ~]# tr -s "a-z" //-s为删除标准输出中重复的
aabbccddAA
abcdAA
[root@localhost ~]# tr -d "a-z" //-d为删除标准输出中再列表中出现的
AaBbCc
ABC
本文出自 “flyclc” 博客,请务必保留此出处http://flyclc.blog.51cto.com/1385758/1540707
标签:linux学习
原文地址:http://flyclc.blog.51cto.com/1385758/1540707