본문 바로가기
카테고리 없음

[Linux] List of Command Line Commands

by 리노 Linho 2022. 10. 16.

목적

자주 사용하는 명령어는 습관처럼 사용하지만 모든 명령어를 외우고 있기 않기 때문에 기록용으로 보관

Nohup

명령어 실행 ( Background )

nohup go run command &
# & = background
#Ex)command = server.go

 

프로세스 확인 ( All )

ps -ef

프로세스 확인 ( Keyword )

ps -ef | grep "Key word"
#Ex)keyword = go run

프로세스 제거 ( Pid )

kill -9 PID
#Ex)PID = 16273

 

Git

git clone ( Token )

git clone https://githubToken@github.com/username/repo.git