이름에 공백이 있는 디렉토리로 파일 이동

이름에 공백이 있는 디렉토리로 파일 이동

대상 디렉터리는 이름에 공백이 있는 디렉터리입니다. /opt/config/Sn Lk 이제 내 디렉터리에서 해당 디렉터리로 파일을 이동하는 스크립트를 작성했지만 명령의 에코는 괜찮아 보이지만 이동이 실패합니다.

workdir=/home/mydir
destdir="'opt/config/Sn Lk"
file=Al_10.txt

destination="$destdir/$file'"
echo "command = mv -v $workdir/$file $destination"
mv -v $workdir/$file $destination

결과:

command = mv -v /home/mydir/Al_10.txt '/opt config/Sn Lk/Al_10.txt'
mv: target ‘Lk/Al_10.txt'’ is not a directory

이동 명령은 어떻게 작성해야 하나요?

관련 정보