nocomment (276B)
1 #!/usr/bin/sed -Ef 2 # Copyright 2022 Jacob R. Edwards 3 # Simple script to remove sh-style comments 4 # 5 # (Note that it has no concept of sh(1) escaping, as it's true 6 # purpose is to provide a common comment stripping facility for 7 # basic configuration files.) 8 9 /^#/d 10 s/[ ]+#.*//