summaryrefslogtreecommitdiff
path: root/src/scripts/nocomment
blob: cd5f0c2c0839e68db77ea93a571933d569084277 (plain)
1
2
3
4
5
6
#!/bin/sh

# Remove all the commments in the given file 
# Comments are considered to start with "#"

sed -i "s/\s*#.*//g; /^$/ d" $1