我想打这个bash脚本
$ ./scriptName -o -p -t something path/to/file
这是我得到的
#!/bin/bash o=false p=false while getopts ":opt:" options do case $options in o ) opt1=true ;; p ) opt2=true ;; t ) opt3=$OPTARG ;; esac done
你可以这样做:
原文链接:https://www.f2er.com/bash/388152.htmlshift $(($OPTIND - 1)) first_arg=$1 second_arg=$2
循环运行后。