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

Bash脚本记录

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

Bash脚本记录
 
记录以下常用的shell命令。
 
1.Append output to files
 
[sql] 
[androidyue@androidyue tmp]$ touch 1.txt  
[androidyue@androidyue tmp]$ echo "11111" > 1.txt   
[androidyue@androidyue tmp]$ echo "22222" >> 1.txt   
[androidyue@androidyue tmp]$ cat 1.txt   
11111  
22222  
 
2.判断字符串是否包含某字符串
[plain] 
item="a.png"  
if [[ "$item" == *.png ]]  
then  
        echo $item  
fi  
 
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜