Programming/Linux (리눅스)

[리눅스/유틸] 유용한 1줄 명령어

MOONCO 2021. 5. 23. 18:57

- 원문 -

 

My Favorite One Liners | Muhammad

Commandline one liners that makes your workflow more productive

muhammadraza.me


명령창(shell)의 출력을 이미지로 변환 ( 이미지로 출력결과 공유하고 싶을때 )

ps aux | convert label:@- process.png

 

컴퓨터 위치정보, 외부 IP 주소 출력하기

curl ipinfo.io

 

git 프로젝트에 기여한 사람 출력하기

git log --format='%aN' | sort -u

 

자주 실행하는 명령 확인

history | awk '{print $2}' | sort | uniq -c | sort -rn | head

 

현재 위치에 존재하는 모든 폴더 출력

ls -d */

 

현재 위치에 존재하는 모든 폴더 중에, 가장 큰 10개의 폴더 출력

du -hs */ | sort -hr | head

 

인터넷 사용중인 모든 앱 출력

ss -p

 

특정파일 제외하고 모든 파일 삭제하기

// text.txt 제외
rm -f !(text.txt)

 

파이썬3로 http 서버시작 ( 네트워크 통해 html 파일 공유시 유용 )

python3 -m http.server

 

명령창(shell) 실시간 공유

mkfifo hello; script -f hello

 

반응형