Commit 1639da3f authored by Joanne Hugé's avatar Joanne Hugé

Add remove-amarisoft-comments script

parent b7cd8ccf
#!/bin/bash
if [ "$#" -ne 2 ]; then
echo "Usage: $0 INPUT_FILE OUTPUT_FILE";
exit;
fi
gcc -E - < $1 | sed '/^[[:space:]]*$/d' | sed '/^#.*/d' > $2
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment