bash – 在getopts之后解析参数

前端之家收集整理的这篇文章主要介绍了bash – 在getopts之后解析参数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想打这个bash脚本
  1. $ ./scriptName -o -p -t something path/to/file

这是我得到的

  1. #!/bin/bash
  2.  
  3. o=false
  4. p=false
  5.  
  6. while getopts ":opt:" options
  7. do
  8. case $options in
  9. o ) opt1=true
  10. ;;
  11. p ) opt2=true
  12. ;;
  13. t ) opt3=$OPTARG
  14. ;;
  15. esac
  16. done

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

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

循环运行后。

猜你在找的Bash相关文章