- 博客(5)
- 收藏
- 关注
原创 Bash special variable:$#, $$, $@, $*, $0, $?
special variable:$#, $$, $@, $*, $0, $? [b]1, $#[/b] [b]The number of arguments supplied to a script.[/b] eg: if [ "$#" -eq 0 ]; then echo "you did not pass any parameter" fi echo "Total...
2017-03-02 11:15:13 89
原创 Bash Difference between ${} and $()
Difference between ${} and $() 1, $(command) is “command substitution”. it runs the command, captures its output, and inserts that into the command line that contains the $(…); eg: $ ls -ld ...
2017-03-02 11:06:35 119
原创 Bash Variable: define and usage: difference between $NAME and ${NAME}
Variable: define and usage: difference between $NAME and ${NAME} 1, Define: NAME="Zara Ali" 2, Use: Input below in test.ksh NAME="Zara Ali" AGE=13 echo $NAME $ Zara Ali #use ${...
2017-03-02 11:01:43 140
原创 Bash - how to use sendmail
touch exeSendMail.ksh touch eg.txt 1, eg.txt content: hello world! 2, write in exeSendMail.ksh Send mail ( echo "From: SANT"; echo "To: bonnie.tang@gmail.com"; ...
2017-03-02 10:53:02 107
原创 if...else..
1, if...else.. if[]; then else fi 2, if...else if... if[]; then esif[]; then else fi 3, if... if[]; then fi
2017-03-02 10:35:48 86
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人