mv: 셀 수 없음

mv: 셀 수 없음

Raspberry Pi NoIR 카메라에서 이미지를 캡처하는 스크립트를 작성했습니다. 이미지 이름에 타임스탬프를 추가하고 싶지만 다른 프로세스의 이름도 필요합니다. 나는 시도했다:

# Define path
path="/home/pi/Pictures/project/"

# command to capture image in signal mode
raspistill -t 500 -s -w 1024 -h 768 -q 100 -n -awb off -awbg 1.01,0.73 \
    -o ${path}"tmp/tmp.jpg" &

...do other stuff

# capture image
pkill -SIGUSR1 raspistill

# create timestamp name
NAME=$(date +"%Y%m%d_%H%M%S")".jpg"
mv ${path}"tmp/tmp.jpg" $path$NAME

mv 명령 중에 mv:cannotstatnosuchfileordirectory 오류가 발생합니다. 디렉토리는 존재하지만 이미지가 저장되지 않는 것 같아서 -o 경로에 뭔가 문제가 있는 것 같은데 뭔지 알 수 없습니다.

어떤 아이디어가 있나요?

관련 정보