Skip to content

Instantly share code, notes, and snippets.

@superatomic
Created November 29, 2023 05:06
Show Gist options
  • Save superatomic/7e4484ef568c921f9feb9ce83aa1ea78 to your computer and use it in GitHub Desktop.
Save superatomic/7e4484ef568c921f9feb9ce83aa1ea78 to your computer and use it in GitHub Desktop.
lst: strip comments, empty lines, and indentation from files
#!/bin/bash
sed -rf- -- "$@" <<-EOF
s/([^#]*)#.*$/\1/ # remove comments
s/^\s*//;s/\s+$// # strip leading and trailing whitespace
/^$/d # remove blank lines
EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment