Quantcast
Channel: CSDN博客推荐文章
Viewing all articles
Browse latest Browse all 35570

第一个Unix Shell函数

$
0
0

凡事都有个开头;有句话说,万事开头难;不管以后的路怎么样,走好脚下的每一步。

今天接触到了Unix shell中的函数,记录下,写了个hello函数,如下:

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

执行脚本:

sh fun_hello.sh
Hello ,this is my first Shell function!
Today is 2013-02-01 15:48:25 Friday

Unix Date命令

--the end--
作者:BOBO12082119 发表于2013-2-1 15:51:19 原文链接
阅读:37 评论:0 查看评论

Viewing all articles
Browse latest Browse all 35570

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>