瀏覽代碼

Add YAML quick validator

Alois Mahdal 5 年之前
父節點
當前提交
090dfaed72
共有 1 個檔案被更改,包括 8 行新增0 行删除
  1. 8
    0
      dotfiles/bash/main.bashrc

+ 8
- 0
dotfiles/bash/main.bashrc 查看文件

@@ -83,6 +83,14 @@ twice() {
83 83
     "$@"
84 84
 }
85 85
 
86
+ckyaml() {
87
+    #
88
+    # Check if YAML file $1 is loadable
89
+    #
90
+    local yfile=$1
91
+    python -c 'import yaml; import sys; print(yaml.load(sys.stdin)["this"])' <"$yfile"
92
+}
93
+
86 94
 git() {
87 95
     #
88 96
     # /usr/bin/git wrapper just to disable dangerous commands