2023-05-01 19:23:31 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2023-05-04 18:24:41 +02:00
|
|
|
# Remove leading whitespace and comments starting with //
|
|
|
|
sed -e 's/^[[:space:]]*//' -e '/^\/\/.*/d' $1 |
|
|
|
|
# Remove one line comments starting with //
|
|
|
|
sed -e 's/^\/\/.*$//' |
|
2023-05-22 15:49:30 +02:00
|
|
|
# Remove trailing comments starting with space //
|
2023-05-04 18:24:41 +02:00
|
|
|
sed -e 's/ \/\/.*$//' |
|
2023-05-22 15:49:30 +02:00
|
|
|
# Remove one-line comments starting with /*
|
|
|
|
sed -e 's/\/\*.*//g' |
|
2023-05-04 18:24:41 +02:00
|
|
|
# Remove empty lines
|
2023-05-22 15:49:30 +02:00
|
|
|
sed -e '/^\s*$/d'
|
|
|
|
|