소스 검색

Add usage error

Alois Mahdal 5 년 전
부모
커밋
011593cfb0
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1
    0
      dotfiles/bash/main.bashrc

+ 1
- 0
dotfiles/bash/main.bashrc 파일 보기

@@ -88,6 +88,7 @@ ckyaml() {
88 88
     # Check if YAML file $1 is loadable
89 89
     #
90 90
     local yfile=$1
91
+    test -n "$yfile" || { echo "usage: ckyaml FILE.yaml"; return 2; }
91 92
     python -c 'import yaml; import sys; print(yaml.load(sys.stdin)["this"])' <"$yfile"
92 93
 }
93 94