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

第一个Unix Shell函数

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

第一个Unix Shell函数
 
凡事都有个开头;有句话说,万事开头难;不管以后的路怎么样,走好脚下的每一步。
今天接触到了Unix shell中的函数,记录下,写了个hello函数,如下:
 
[plain]   www.zhishiwu.com  
pg fun_hello.sh  
#!/bin/ksh  
  
hello () {  
  echo "Hello ,this is my first Shell function!"  
  echo "Today is `date +%Y-%m-%d/ %H:%S:%M/ %A`"  
}  
#Call hello function  
hello  
#EOF  
 
执行脚本: www.zhishiwu.com  
[plain] 
sh fun_hello.sh  
Hello ,this is my first Shell function!  
Today is 2013-02-01 15:48:25 Friday  
 
--the end--
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜