tar 인수명단이 너무 김
페이지 정보
작성자 최고관리자 댓글 0건 조회 5,728회 작성일 21-05-31 14:34본문
tar 인수명단이 너무 김
/bin/tar: Argument list too long
2007-07-06
If you find yourself stuck with over 30,000 files in a directory (text files in this example), packing them into a tar file can be tricky. You can get around it with this:
find . -name '*.txt' -print >/tmp/test.manifest
tar -cvzf textfiles.tar.gz --files-from /tmp/test.manifest
find . -name '*.txt' | xargs rm -v
https://major.io/2007/07/05/bintar-argument-list-too-long/
/bin/tar: Argument list too long
2007-07-06
If you find yourself stuck with over 30,000 files in a directory (text files in this example), packing them into a tar file can be tricky. You can get around it with this:
find . -name '*.txt' -print >/tmp/test.manifest
tar -cvzf textfiles.tar.gz --files-from /tmp/test.manifest
find . -name '*.txt' | xargs rm -v
https://major.io/2007/07/05/bintar-argument-list-too-long/
추천78
관련링크
- 이전글잡음제거?ㅋㅋ 쉽지 이것만 해보라구~!☝️ [프리미어 프로 잡음 제거/DeNoise] 21.06.01
- 다음글데이터를 다른 테이블에 INSERT하자! INSERT INTO SELECT 21.04.09
댓글목록
등록된 댓글이 없습니다.