- 使用sed命令去掉第一个字符前的所有空格
cat filename|sed -e 's/^[ ]*//g'
- 保留除第一列外的所有列
less -S filename|awk '{$1="";print $0}'
- 使用cut命令获取第一列外的所有列
cut -d ' ' -f 2- filename
cat filename|sed -e 's/^[ ]*//g'
less -S filename|awk '{$1="";print $0}'
cut -d ' ' -f 2- filename
本文标题:linux 快捷命令的使用 2022-06-06
本文链接:https://www.haomeiwen.com/subject/ijyjmrtx.html
网友评论