소스 검색

setup.sh: Add help subcommand

pull/1/head
10sr 10 년 전
부모
커밋
3185956a74
1개의 변경된 파일15개의 추가작업 그리고 4개의 파일을 삭제
  1. +15
    -4
      setup.sh

+ 15
- 4
setup.sh 파일 보기

@@ -470,21 +470,32 @@ setup_env(){


#########################
# main
# help and main

help(){
echo "Usage: ./setup.sh <cmd> ..."
echo " or: ./setup.sh help"
echo "Available cmds are: $__setups"
}

main(){
detect_systems

if test -z "$1"
then
echo "Usage: ./setup.sh <cmd> ..."
echo "Available cmds are: $__setups"
exit 1
help
return 1
fi

_cmd=$1
shift

if test "$_cmd" = help
then
help
return 0
fi

_msg Running setup_$_cmd
setup_$_cmd "$@"
_msg Running setup_$_cmd done


불러오는 중...
취소
저장