티스토리 뷰
unzip *.zip
했을때 filename not matched 라는 caution 이 떠서 Claude 한테 물어보니, 아래 같이 하라고 Claude가 알려줬다. 나는 for zip in *.zip; do unzip "$zip"; done 로 해결했다.
The issue you're encountering is due to how the shell is interpreting the wildcard (*) in your unzip command. Let me explain what's happening:
- When you use unzip *.zip, the shell expands this wildcard before passing it to the unzip command.
- In this case, it's expanding to a list of all .zip files in alphabetical order.
- The unzip command is then trying to process this as: unzip xxxx-004.zip xxxx -005.zip ...
- Unzip is interpreting the first filename as the archive to extract, and all subsequent filenames as files to extract from within that archive.
- Since the other .zip files don't exist inside the first .zip file, you're getting those "filename not matched" messages.
To fix this and unzip all your files, you can use one of these methods:
- Use a for loop:
Copyfor zip in *.zip; do unzip "$zip"; done
- Use find with xargs:
Copyfind . -name "*.zip" -print0 | xargs -0 -I {} unzip '{}'
- If your version of unzip supports it, you can use the -q (quiet) option to suppress the warnings:
Copyunzip -q "*.zip"
These methods will unzip all your .zip files in the current directory. Choose the one you're most comfortable with. The for loop is generally the most straightforward and widely compatible option.
'기타' 카테고리의 다른 글
개떡같이 말해도 찰떡같이 알아듣고 구현해주는 Claude (0) | 2024.08.10 |
---|---|
[Linux] 여러 폴더 밑 동일 이름을 갖는 하위 폴더 한 폴더에 옮기기 (0) | 2024.08.10 |
윈도우 필살기 단축키 (0) | 2024.08.04 |
Ubuntu 22.04 gcc/g++ 12 설치 삽질 기록기 (0) | 2024.07.17 |
Claude 한테 시비걸기 (0) | 2024.07.17 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- C++ Deploy
- 자료구조
- 백준 11437
- 이분탐색
- 문제집
- FairMOT
- 순열
- 가장 긴 증가하는 부분 수열
- ㅂ
- 단축키
- 백트래킹
- Lowest Common Ancestor
- PyCharm
- cosine
- LCA
- 백준 11053
- MOT
- 인공지능을 위한 선형대수
- 백준
- 조합
- 백준 1766
- 위상 정렬 알고리즘
- 파이참
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함