1
cp : fts_open : 그런 파일이나 디렉토리가 없습니다 / 왜?
나는 다음과 같은 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 …