You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
489 B
25 lines
489 B
#!/bin/bash
|
|
#
|
|
# DO NOT RUN ME
|
|
# See parser2
|
|
|
|
for var in "$@"
|
|
do
|
|
# echo -n "find ./ -type f -iname \"*.c*\" -exec sed -i 's/\([^T]\)"
|
|
echo -n "find ./ -type f -iname \"*.c*\" -exec sed -i 's/"
|
|
echo -n ${var##T}
|
|
# echo -n "/\1"
|
|
echo -n "/"
|
|
echo -n $var
|
|
echo "/g' {} \;"
|
|
|
|
# echo -n "find ./ -type f -iname \"*.h*\" -exec sed -i 's/\([^T]\)"
|
|
echo -n "find ./ -type f -iname \"*.h*\" -exec sed -i 's/"
|
|
echo -n ${var##T}
|
|
# echo -n "/\1"
|
|
echo -n "/"
|
|
echo -n $var
|
|
echo "/g' {} \;"
|
|
done
|
|
|