보뇨 다이어리

실무중 가장 많이 사용할 linux 커맨드 리스트 본문

컴퓨터 관련/개발지식 정보

실무중 가장 많이 사용할 linux 커맨드 리스트

보뇨 2022. 5. 22. 17:01
반응형

매번 인터넷을 보고 찾는것도 귀찮다.

그래서 좀 정리를 할려고하는데 생각날때마다 리스트업을 할 생각이라 간간히 업데이트된다고 생각하면됨

 

1. 파일 삭제 

# 확장자 또는 모르는 글자수를 확실히 알때
# 앞에 한글자만 다르고 이외에는 모두 같은 파일 삭제 
find . -type f -name "?.txt" -delete 

# 만약 글자수를 예측할수없을때는 ? 와일드 카드를 넣어준다
find . -type f -name "log*.txt" -delete

2. cat 명령어 사용 

# 각 라인별 번호 추가
cat -n a.txt b.txt

test@dd ~/D/github-repostories> cat -n a.txt b.txt 
     1	hello host
     1	glad to see you

3. 폴더 삭제 

rm -rf 를 저는 보통 많이 사용하는데 한번에 삭제되는거다보니 좀 무서워서 다른 대안책을 보다가 발견 

tesT@t ~/D/github-repostories> mkdir -p ./something/in/the/box
tEST@dd ~/D/github-repostories> mkdir another
tEST@dd ~/D/github-repostories> rmdir something/
rmdir: something/: Directory not empty
tEST@dd ~/D/github-repostories [1]> rmdir another/
tEST@dd ~/D/github-repostories>
반응형