본문 바로가기

시스템/Macos

(3)
[exiftool] exif 날짜 정보 수정 exif 정보 수정은 맥과 윈도우 모두 지원하는 프로그램으로 ExifTool을 사용하는게 가장 간편하다.간단히 파일의 날짜 수정은 맥의 경우 xcode command line tool 를 통해 SetFile, touch 로 수정할 수 있다.ExifTool by Phil Harvey ExifTool by Phil Harvey0 (Information Type) AAC, AFCP, AIFF, APE, APP0, APP1, APP11, APP12, APP13, APP14, APP15, APP2, APP3, APP4, APP5, APP6, APP7, APP8, APP9, ASF, Audible, Canon, CanonVRD, Composite, DICOM, DNG, DV, DjVu, Ducky, EXE, EXI..
rename 을 사용한 파일명 변경 rename 설치 brew install rename 특정 문자 제거 rename -d Test * 특정 문자열 변경 rename -s 찾을문자열 바꿀문자열 파일목록 renmae -s Beta Release * rename 's/Beta/Release/' * 특정 위치 문자 제거 앞에서 3글자 제거 rename 's/^.{3}//' * 앞쪽에서 2~3자에 .(마침표) 형식으로된 문자열을 제거 rename 's/^.{2,3}\.//' * 앞쪽에 2~3자리 숫자 + .(마침표) + ' '(스페이스) 형식으로 된 문자열 제거 rename 's/^[0-9]{2,3}\.\s//' *e 뒤쪽 3글자 제거 rename 's/.{3}$//' * 확장자(.dat) 뒤쪽 3글자 제거 rename 's/.{3}\.dat$/..
터미널 iTerm2 , oh-my-zsh 설정 HomeBrew https://brew.sh/index_ko Homebrew The Missing Package Manager for macOS (or Linux). brew.sh > /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" zsh 이 아닌 경우 교체 > brew install zsh 기본쉘 변경 > chsh -s $(which zsh) git, curl 등 설치 : 테마와 색상 다운로드시 필요하므로 설치되어 있지 않은 경우 설치한다 > brew install git > brew install curl iTerm2 https://www.iterm2.com/downloads.h..