mirror of
https://github.com/stargieg/bacnet-stack
synced 2025-10-26 23:35:52 +08:00
fork from http://sourceforge.net/projects/bacnet/
This commit is contained in:
25
comment.sh
Executable file
25
comment.sh
Executable file
@@ -0,0 +1,25 @@
|
||||
#!/bin/bash
|
||||
# This script converts any C++ comments to C comments
|
||||
# using the ccmtcnvt tool from the liwc package
|
||||
|
||||
CONVERTER=/usr/bin/ccmtcnvt
|
||||
# silent fail if the tool is not installed
|
||||
[ -x ${CONVERTER} ] || exit 0
|
||||
|
||||
directory=${1-`pwd`}
|
||||
for filename in $( find ${directory} -name '*.c' )
|
||||
do
|
||||
echo Converting ${filename}
|
||||
TEMPFILE="/tmp/ccmtcnvt.$RANDOM.txt"
|
||||
${CONVERTER} ${filename} > ${TEMPFILE}
|
||||
mv ${TEMPFILE} ${filename}
|
||||
done
|
||||
|
||||
for filename in $( find ${directory} -name '*.h' )
|
||||
do
|
||||
echo Converting ${filename}
|
||||
TEMPFILE="/tmp/ccmtcnvt.$RANDOM.txt"
|
||||
${CONVERTER} ${filename} > ${TEMPFILE}
|
||||
mv ${TEMPFILE} ${filename}
|
||||
done
|
||||
|
||||
Reference in New Issue
Block a user