본문 바로가기
IT & AI테크

Check Files in list from file exist or doesn't exist in directory

by 오늘만, 2020. 11. 9.
반응형
#!/usr/bin/env bash
#Check Files in list from file exist or doesn't exist in directory.

if [ $# -eq 0 ] || [ $# -eq 1 ]
then
echo "You must pass the path to file with the list and the path to directory to check files. \nsh [check-file-exist-from-list.sh](http://check-file-exist-from-list.sh/) path/to/file path/to/directory"
exit 1
fi

while read -r file; do
echo "$2$file"
if [ -e "$2/$file" ]; then
echo "$file exists in $2"
else
echo "$file doesn't exist in $2"
fi
done < "$1"
반응형