tar
여러 폴더와 파일을 사용하고 제외하여 웹사이트의 콘텐츠를 압축하려고 하는데 error_log
작동하지 않는 것 같습니다. 처리하는 동안 제외된 파일이 많이 처리되는 것을 볼 수 있습니다.
나는 사이트의 루트에 있고 tar
그 안에 있는 모든 것을 시도하고 있습니다 public_html
.
이것은 내가 실행 중인 명령입니다.
tar -zcvf files-live.tgz public_html/ --exclude='public_html/cache' --exclude='public_html/uplimg' --exclude='public_html/images/listings' exclude='public_html/sets' exclude='public_html/manage' exclude='error_log'
참고 사항: error_log
여러 디렉토리에 존재하지만 원하지 않습니다어느여기에는 다음이 포함됩니다.
내가 여기서 뭘 잘못하고 있는 걸까?
답변1
exclude=
그건 당신이 사용한 것이 아닙니다 --exclude=
.
tar -zcvf files-live.tgz public_html/ --exclude='public_html/cache' --exclude='public_html/uplimg' --exclude='public_html/images/listings' --exclude='public_html/sets' --exclude='public_html/manage' --exclude='error_log'