🍄Shell

Shell Command 팁 모음

날짜/시간

  • 2분 전 시각 출력

date --date='2 minutes ago' "+%Y-%m-%d %H:%M:%S"

출력: 2020-05-08 17:02:05

네트워크

  • local의 외부 IP 확인

curl -s https://api.ipify.org

특정 디렉토리명 일괄 삭제

  • 가끔식 out, build 디렉토리들을 한 번에 정리하고 싶을 때가 있더라

find . -name $1 -type d -maxdepth 5 -print0 | xargs -0 rm -r --

TimeZone 수정

sudo cp -p /usr/share/zoneinfo/Asia/Seoul /etc/localtime 

포트 사용중인 프로세스 찾기 (macOS monterey)

sudo lsof -iTCP -sTCP:LISTEN -n -P