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

 

https://askubuntu.com/questions/518370/extract-several-zip-files-each-in-a-new-folder-with-the-same-name-via-ubuntu-t/518376

 

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