diff options
| author | nass1pro <nass1pro@gmail.com> | 2020-06-09 19:48:34 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-06-13 11:25:24 +0200 |
| commit | 19d83149feebaeb99430715242aac352890122cc (patch) | |
| tree | c5b6761db98e27d15bab3fb45ba9e0a646cf06e0 /test_mini/libft/script/find_src.sh | |
| parent | 9fabc25a980550afc6337fd729632462f2680daa (diff) | |
| download | minishell-19d83149feebaeb99430715242aac352890122cc.tar.gz minishell-19d83149feebaeb99430715242aac352890122cc.tar.bz2 minishell-19d83149feebaeb99430715242aac352890122cc.zip | |
lexer_test
single_ok
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" |
