Chinaunix首页 | 论坛 | 博客
  • 博客访问: 167413
  • 博文数量: 66
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 20
  • 用 户 组: 普通用户
  • 注册时间: 2016-06-23 15:21
文章分类

全部博文(66)

文章存档

2016年(66)

我的朋友

发布时间:2016-06-02 11:04:09

变量说明: $$ Shell本身的PID(ProcessID) $! Shell最后运行的后台Process的PID $? 最后运行的命令的结束代码(返回值) $- 使用Set命令设定的Flag一览 $* 所有参数列表。如"$*"用「"」括起来的情况、以"$1 $2 … $n"的形式输出所有参数。 $@ 所.........【阅读全文】

阅读(802) | 评论(0) | 转发(0)

发布时间:2016-06-02 10:56:38

OK=0FAIL=1function require_curl() {    which curl &>/dev/null    (这里的作用是输出结果不输出在屏幕上)    if [ $? -eq 0 ]    then      return $OK    fi    return $FAIL}which:查找可执行文件的存放路径(1):是执.........【阅读全文】

阅读(903) | 评论(0) | 转发(0)

发布时间:2016-06-02 10:27:43

cat << EOFUsage: myscript <command> <arguments>VERSION: 1.0Available Commands    install - Install package    uninstall - Uninstall package    update - Update package    list - List packagesEOF[liuwx@linux-81 rec]$ ./111.sh Usage: myscript <c.........【阅读全文】

阅读(783) | 评论(0) | 转发(0)

发布时间:2016-06-02 10:20:46

READ_TIMEOUT=60read -t "$READ_TIMEOUT" input# if you do not want quotes, then escape itinput=$(sed "s/[;\`\"\$\' ]//g" <<< $input)# For reading number, then you can escape other charactersinput=$(sed 's/[^0-9]*//g' <<< $input)......【阅读全文】

阅读(770) | 评论(0) | 转发(0)

发布时间:2016-06-02 10:19:02

if [ ${#authy_api_key} != 32 ]then  red "you have entered a wrong API key"  return $FAILfiNote:        ${#VARIABLE_NAME} 可以给出字符串的长度。......【阅读全文】

阅读(770) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册