cp(2)
-
s3 파일 다운로드 없이 CLI로 간단히 보는 방법
- 개요 S3에 있는 object는 download를 하지 않으면 내용을 볼 수가 없다. 아래는 S3 object를 download 없이 간단히 확인할 수 있는 방법이다. - 확인 방법 aws s3 cp --quiet s3:///foo_bar.txt /dev/stdout
2022.10.12 -
powershell command (cp, list, rename, find, count)
- 개요 Windows Power Shell에서 사용하는 기본 명령어에 대해 정리 했다. - 예시 txt로 끝나는 파일 리스트 Get-ChildItem *txt wav로 끝나는 파일 리스트를 walist라는 파일로 저장 Get-ChildItem -filter *wav > wavlist.txt txt로 끝나는 파일이름을 log로 끝나는 파일이름으로 변경 Get-ChildItem *txt | Rename-Item -NewName { $_.Name -Replace 'txt', 'wav'} json으로 끝나는 파일 갯수 count (Get-ChildItem -filter *json | Measure-Object).Count 현재 폴더의 파일 갯수 count (Get-ChildItem -Recurse -File ..
2020.11.06