linux 에서 zip file 여러개 한꺼번에 풀기
2019. 5. 16. 20:12ㆍ꿀팁 분석 환경 설정/Linux 관련 팁
728x90
## 원하는 것만 풀 때
unzip a.zip b.zip c.zip
## 여러개를 한번에 풀 때
unzip '*.zip'
''를 해줘야 한다!!
## 여러개를 하는데 원하는 폴더에 넣고 싶을 때 다음과 같이 진행하다.
unzip '*.zip' -d /home/user/folder/
unzip '*.zip'
https://chrisjean.com/unzip-multiple-files-from-linux-command-line/
Unzip Multiple Files from Linux Command Line :: Chris Jean
chrisjean.com
Extract several zip files, each in a new folder with the same name, via Ubuntu terminal
I have many zip files a.zip, b.zip, c.zip, ... and I want to extract each of them into new folders a, b, c, ... respectively, via terminal. Actually, what I want is a solution that I can use late...
askubuntu.com
728x90
'꿀팁 분석 환경 설정 > Linux 관련 팁' 카테고리의 다른 글
curl: (5) Couldn't resolve proxy hproxy~~~ 해결법 (0) | 2019.08.01 |
---|---|
linux Cash Swap 지우기 (0) | 2019.06.15 |
apt-get update proxy 잘 못 건드릴 때 생기는 오류 해결 ubuntu (2) | 2019.05.14 |
Ubuntu에서 H2O Driverless AI의 설치 [설치는 됨] (0) | 2019.05.14 |
Linux 에서 폴더 , 파일 용량 확인하기 및 Trash에서 제거하기 (0) | 2019.05.02 |