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 |
Tags
- web.xml
- profile
- Windows
- Windows 10
- ssh
- GIT
- Mac
- grep
- Quartz
- netsh
- JavaScript
- Source
- context
- Eclipse
- 네트워크
- vscode
- import
- 줄바꿈 문자
- lsof
- IntelliJ
- VirtualBox
- tomcat
- resource
- bash
- maVen
- xargs
- port
- 단축키
- find
- plugin
Archives
- Today
- Total
develog
[mac] 맥에서 tar 로 압축하고 리눅스에서 압축해제 할 때 ._ 파일 포함하지 않기 본문
맥에서 tar 로 압축하고
리눅스에서 tar 를 압축해제 할 때
tar cvfz build.tar.gz build/*
'._' 으로 시작하는 파일들이 생긴다

아래 방법으로 tar 압축하면 '._' 파일이 생기지 않는다
COPYFILE_DISABLE=1 tar cvfz build.tar.gz build/*