码迷,mamicode.com
首页 > 系统相关 > 详细

shell 编程每日100行

时间:2017-01-10 23:29:32      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:mod   bsp   echo   eve   cat   blog   not found   shell   world   

xiluhua@localhost ~/tscripts $ echo "hello world !"
-bash: !": event not found
xiluhua@localhost ~/tscripts $ echo hello world !
hello world !
xiluhua@localhost ~/tscripts $ echo hello world ! >> t1.sh 
xiluhua@localhost ~/tscripts $ cat t1.sh 
#!/bin/bash
hello world !
xiluhua@localhost ~/tscripts $ vi t1.sh 
xiluhua@localhost ~/tscripts $ chmod +x t1.sh 
xiluhua@localhost ~/tscripts $ ./t1.sh 
Hello world !
xiluhua@localhost ~/tscripts $ sh t1.sh 
Hello world !
xiluhua@localhost ~/tscripts $ /bin/bash t1.sh 
Hello world !
xiluhua@localhost ~/tscripts $ 


 

shell 编程每日100行

标签:mod   bsp   echo   eve   cat   blog   not found   shell   world   

原文地址:http://www.cnblogs.com/xiluhua/p/6271146.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!