今回のスクリプトはハッシュ系で構成されたもの限定です。 配列系は対応していません。 本文 次のようなYAMLファイルがあるとします。 ## global definitions global: debug: yes verbose: no debugging: detailed: no header: "debugging started" ## output output: file: "yes" これをパースしたい場合、次のようなBashスクリプトを組み...*1 #!/bin/bash function parse_yaml () { local s='[[:space:]]*' w='[a-zA-Z0-9_]*' fs=$(echo @|tr @ '\034') sed -ne "s|^\($s\)\($w\)$s:$s\"\(.*\)\"$s\$|\1$fs\2$fs\3|p"