在bash脚本中读取默认配置文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在bash脚本中读取默认配置文件相关的知识,希望对你有一定的参考价值。
deftwitlogrc="~/.twitlog.rc" # # Parse command line # me=`basename $0 .sh` usage="Usage: $me [-c config-file] <message> NOTE: config-file defaults to $deftwitlogrc" while getopts ":c:" options; do case $options in c ) twitlogrc=$OPTARG;; h ) echo -e $usage exit 0;; ? ) echo -e $usage exit 1;; * ) echo -e $usage exit 1;; esac done shift $((OPTIND - 1)) # # Try and read config file # if [ -z "$twitlogrc" ] then source ${HOME}/.twitlog.rc else source $twitlogrc fi if [ $? -ne 0 ] then echo "Cannot open config file" echo echo -e $usage exit 1 fi
以上是关于在bash脚本中读取默认配置文件的主要内容,如果未能解决你的问题,请参考以下文章