博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Bash script set help function
阅读量:6219 次
发布时间:2019-06-21

本文共 357 字,大约阅读时间需要 1 分钟。

set -o nounsethelp(){    cat <<- EOF    Desc: execute f1x for each case in Codeflaws    Usage: ./exec_codeflaws.sh [Codeflaw_dir] [f1x_path] [run-f1x-codeflaw.rb_Dir]    EOF    exit 0}while [ -n "$1" ]; do    case $1 in        -h) help;;        --) shift;break;;        -*) echo "error: no such option $1."; exit 1;;        *) break;;esacdone

Referred from:

转载地址:http://rtrja.baihongyu.com/

你可能感兴趣的文章
Jmeter:图形界面压力测试工具
查看>>
proteus中的常用文件
查看>>
Ubuntu搜狗输入法无法输入中文等问题
查看>>
Linux函数之snprintf()[一]
查看>>
php 使用zendstudio 生成webservice文件 wsdl
查看>>
mysql将数据表改成 innodb
查看>>
Spring
查看>>
spring配置多数据源问题
查看>>
IOS中的属性列表----Property List
查看>>
如何通过网页启动应用程序
查看>>
ORA-00845: MEMORY_TARGET not supported on this system
查看>>
android 获取路径目录方法以及判断目录是否存在,创建目录
查看>>
使用ajaxFileUpload实现异步上传图片
查看>>
Python 杂集
查看>>
Another Eight Puzzle
查看>>
炸弹人——NABCD分析
查看>>
【前端积累】背景图像和背景替换
查看>>
ibatis sqlmap动态SQL
查看>>
使用WdatePicker日期组件时,选择日期后,执行某个方法
查看>>
HttpClient---------demo
查看>>