Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- import
- web.xml
- 줄바꿈 문자
- GIT
- 단축키
- Source
- Windows 10
- maVen
- Eclipse
- vscode
- ssh
- tomcat
- VirtualBox
- find
- grep
- Windows
- IntelliJ
- lsof
- context
- xargs
- 네트워크
- plugin
- profile
- port
- bash
- resource
- Quartz
- Mac
- JavaScript
- netsh
Archives
- Today
- Total
develog
[linux] war 압축 해제 본문
unzip
# myDir 경로에 압축풀기
$ unzip my.war -d ./myDir
jar
# myDir 경로에 압축풀기
[~]$ mkdir myDir
[~]$ cd myDir
[myDir]$ jar xvf '../my.war'
Comments