Repositories (1)

ObjectiveCVerbalExpressions
1 snippets stored for this repo
Shell IconShell
while read line; do
	declare key=$(echo "${line}" | cut -d "=" -f1)
	declare value=$(echo "${line}" | cut -d "=" -f2)
	printf -v "`trim ${key}`" "`trim ${value}`" # https://sites.google.com/a/tatsuo.jp/programming/Home/bash/hentai-bunpou-saisoku-masuta
done < <( echo "${xctoolVars}" )

declare -r gcov_dir="${OBJECT_FILE_DIR_normal}/${CURRENT_ARCH}/"