知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

实用Shell命令备忘

发布时间:2014-09-05 14:17:05作者:知识屋

实用Shell命令备忘
 
开场白:这里简单记录一些常用的bash命令,一则备忘,二来希望可以帮助别人解决一些问题。
 
1.检测文件是否存在
 
[php] 
if [ -f ./foo.txt ]  
then  
    echo the file exists  
fi  
 
2.检测目录是否存在
 
[php] 
if [ -d ./test1 ]  
then  
    echo the directory exists  
fi  
 
3.让高亮功能一直存在
 
[php] 
androidyue@ubuntu:~/Desktop$ ls | grep s --color=always | more  
 
 
4.使用curl批量下载ftp资源
 
[php] 
curl -u user:password 'ftp://10.0.1.5/archive/photo/IMG_[8763-9147].JPG' -O  
 
5.后台执行程序,在程序后加上&,注意两者之间有一个空格
 
[php] 
androidyue@ubuntu:~/Desktop$ start_eclipse.sh &  
[1] 3749  
 
6.获取文件信息
 
[php] 
androidyue@ubuntu:~/Pictures/coding$ file flyweight.png   
flyweight.png: PNG image data, 723 x 311, 8-bit/color RGB, non-interlaced  
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜