感谢支持
我们一直在努力

实用Shell命令备忘

开场白:这里简单记录一些常用的bash命令,一则备忘,二来希望可以帮助别人解决一些问题。

1.检测文件是否存在

if [ -f ./foo.txt ]

then

    echo the file exists

fi

2.检测目录是否存在

fi

if [ -d ./test1 ]

then

 echo the directory exists

fi

3.让高亮功能一直存在

www.linuxidc.com @Ubuntu:~/Desktop$ ls | grep s –color=always | more

4.使用curl批量下载ftp资源

curl -u user:password ‘ftp://10.0.1.5/archive/photo/IMG_[8763-9147].JPG’ -O

5.后台执行程序,在程序后加上&,注意两者之间有一个空格

www.linuxidc.com @ubuntu:~/Desktop$ start_eclipse.sh &

[1] 3749

6.获取文件信息

www.linuxidc.com @ubuntu:~/Pictures/coding$ file flyweight.png 

flyweight.png: PNG image data, 723 x 311, 8-bit/color RGB, non-interlaced 

推荐阅读:

什么是Bash Shell的内建(build in)命令 http://www.linuxidc.com/Linux/2013-06/86039.htm

Linux下Shell编程——awk编程 http://www.linuxidc.com/Linux/2013-06/85527.htm

赞(0) 打赏
转载请注明出处:服务器评测 » 实用Shell命令备忘
分享到: 更多 (0)

听说打赏我的人,都进福布斯排行榜啦!

支付宝扫一扫打赏

微信扫一扫打赏