나는 다음과 같은 bash 스크립트를 가지고있다.
#!/bin/bash
echo "This script will copy all JPG files inside directory '~/temp/merged':";
pwd;
read -r -p "Please confirm, that you want to copy all JPG files [y/N]" response
case $response in
[yY][eE][sS]|[yY])
find . -iname "*.jpg" -type f -print0 | while IFS= read -d '' f ;
mkdir -p ~/temp/merged;
do
echo "$f"
cp "$f" ~/temp/merged/$orig_f
done
;;
*)
;;
esac
올바른 실행이 끝나면 다음과 같은 오류가 발생합니다.
cp : fts_open : 해당 파일 또는 디렉토리 없음
왜? 도와주세요.
rdirplus
NFS 마운트 옵션이 사용됩니다.