linux 常用命令
Posted hufangrui
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux 常用命令相关的知识,希望对你有一定的参考价值。
1、小写字母转换大写字母
echo "aBcD"|tr ‘a-z‘ ‘A-Z‘
2、大写字母转换小写字母
echo "aBcD"|tr ‘A-Z‘ ‘a-z‘
3、当前脚本路径
basepath=$(cd `dirname $0`; pwd)
具体详细解释,请看http://www.cnblogs.com/FlyFive/p/3640267.html
4、常用日期变量
date +‘%y%m%d%H%M%S‘
输出格式为:20161027090005
date +‘%y-%m-%d %H:%M:%S‘
输出格式为:2016-10-27 09:00:05
5、sed常用命令
删除匹配test的行
sed -i ‘/test/d‘ /tmp/test.txt
修改/tmp/test.txt的内容test为test1
sed -i ‘s/test/test1/g‘ /tmp/test.txt
如遇到特殊字符,请把/替换为#或者其它字符.例如:sed -i ‘s#test#test1#g‘ /tmp/test.txt
6、行转列
执行命令:cat /tmp/test.txt
输出:
a b c
执行命令:
for parm in $(cat /tmp/test.txt)
do
echo $parm
done
输出结果:
a
b
c
7、列转行
执行命令:cat /tmp/test.txt
输出:
a
b
c
执行命令:cat /tmp/test.txt|xargs -r
输出:
a b c
以上是关于linux 常用命令的主要内容,如果未能解决你的问题,请参考以下文章