honey_pot
[리눅스] 또 찾을까봐 모음 본문
!find . -type f -name "*meta*" -exec rm {} \;
meta가 들어가는 파일 찾아서 rm
$ tar xvf xvfz pinpoint-agent-2.0.4.tar.gz --strip 1
상위 폴더 제외하고 압축해제
!find . -name “*_s_*” -exec cp ‘{}’ /Volumes/TOSIBA_2TB/상품_이미지_원천/yolov5_dataset/single_images/ \;
_s_가 들어가는 파일들 해당 경로로 cp \; 앞에 스페이스바 있음
!bsdtar xf coffeetea2.zip --strip-components=1 -C coffee
zip 파일 해제시 --strip-components 2 쓰기 위해 bsdtar 사용
--exclude "*_m_*" 같은 패턴 주고 파일 제외도 가능
As others have noted, unzip does not support this. However, bsdtar can extract zip files as well.
bsdtar xvf app.zip --strip-components=1 -C /opt/some-app
bsdtar can also extract streams (which unzip does not support).
curl -sSL https://... | bsdtar xvf - --strip-components=1 -C /opt/some-app
출처 : https://superuser.com/questions/518347/equivalent-to-tars-strip-components-1-in-unzip
'기타' 카테고리의 다른 글
[python] __name__ == __main__ (0) | 2022.08.30 |
---|---|
html, css (0) | 2022.08.29 |
[Linux, Mac] MACOSX 제거, .DS_Store 제거 (0) | 2022.08.20 |
[Linux] 리눅스 파일 개수 확인 명령어 (0) | 2022.08.19 |
mac 단축키 (0) | 2022.08.04 |
Comments