bash – 在getopts之后解析参数

前端之家收集整理的这篇文章主要介绍了bash – 在getopts之后解析参数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想打这个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

但是如何获取路径/到/文件

你可以这样做:
shift $(($OPTIND - 1))
first_arg=$1
second_arg=$2

循环运行后。

原文链接:https://www.f2er.com/bash/388152.html

猜你在找的Bash相关文章