diff options
Diffstat (limited to 'test_mini/libft/script/find_src.sh')
| -rwxr-xr-x | test_mini/libft/script/find_src.sh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test_mini/libft/script/find_src.sh b/test_mini/libft/script/find_src.sh new file mode 100755 index 0000000..511642b --- /dev/null +++ b/test_mini/libft/script/find_src.sh @@ -0,0 +1,20 @@ +#!bin/sh + +if [ $# -ne 1 ]; then + echo "Usage $0 ignore_file" + exit 1 +fi + +IGNORE_FILE=$1 + +if [ ! -e $IGNORE_FILE ]; then + echo "Ignore file doesnt exist" + exit 1 +fi + +SRC_DIR=src + +IGNORE_FIND_ARGS=`sed 's/.*/-not -path "&"/' $IGNORE_FILE | paste -sd " " -` + +sh -c "find $SRC_DIR $IGNORE_FIND_ARGS -name \"*.c\"" +# find $SRC_DIR $IGNORE_FIND_ARGS -name "*.c" |
