From 579a26f5593039ffbbd1a81e45ecf0ef8797cb5d Mon Sep 17 00:00:00 2001 From: nass1pro Date: Tue, 9 Jun 2020 19:48:34 +0200 Subject: add lexer add single quote --- test_mini/libft/script/find_src.sh | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 test_mini/libft/script/find_src.sh (limited to 'test_mini/libft/script/find_src.sh') 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" -- cgit