Skip to content

Instantly share code, notes, and snippets.

@adamjarret
Created March 22, 2024 20:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adamjarret/3f4796e1e0b438452cc93437f6d90d23 to your computer and use it in GitHub Desktop.
Save adamjarret/3f4796e1e0b438452cc93437f6d90d23 to your computer and use it in GitHub Desktop.
Update yaml file preserving empty lines
# Usage:
#
# yqblank '. | .some-prop = false' file.yml
#
# Thanks https://github.com/mikefarah/yq/issues/515#issuecomment-1113957629
yq "$1" "$2" | diff -B "$2" - | patch "$2" -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment