이렇게 압축을 풀 수 있어요
find /file/location -mtime -1 -print -exec unzip -o {} \;
하지만 다른 위치에 압축을 풀려고 하면 다음과 같은 오류가 발생합니다 /home/username
.
find /file/location -mtime -1 -print -exec unzip -d /home/username;
내가 뭘 잘못했나요?
답변1
압축을 풀고 특수 문자를 이스케이프하려면 fileName을 전달해야 합니다 ;
.
find /file/location -mtime -1 -type f -exec unzip {} -d /home/username \;