diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2020-10-11 14:53:20 +0200 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2020-10-11 14:53:20 +0200 |
| commit | 39951f08a2938683d800c677c3a244e9ff8dbe19 (patch) | |
| tree | 9321278f57c91d070e269fc2d2f95d4f2cb00fdf /script/find_src.sh | |
| parent | 306a69eb9ae88813cf0be0aa3e001481e12220a1 (diff) | |
| download | libft-39951f08a2938683d800c677c3a244e9ff8dbe19.tar.gz libft-39951f08a2938683d800c677c3a244e9ff8dbe19.tar.bz2 libft-39951f08a2938683d800c677c3a244e9ff8dbe19.zip | |
Removing none c,h files for correction
Diffstat (limited to 'script/find_src.sh')
| -rwxr-xr-x | script/find_src.sh | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/script/find_src.sh b/script/find_src.sh deleted file mode 100755 index 511642b..0000000 --- a/script/find_src.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!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" |
