일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- VOA
- Spring Boot
- 도커
- 영어공부
- Spring
- Java
- Python
- 스프링부트
- DataGridView
- 자바
- 머신러닝
- Winform
- git
- MySQL
- 리팩토링
- springboot
- c#
- kubernetes
- react
- 쿠버네티스
- 파이썬
- docker
- machine-learning
- 리눅스
- mybatis
- 마이바티스
- github
- 리액트
- 스프링
- AWS
Archives
- Today
- Total
보뇨 다이어리
실무중 가장 많이 사용할 linux 커맨드 리스트 본문
반응형
매번 인터넷을 보고 찾는것도 귀찮다.
그래서 좀 정리를 할려고하는데 생각날때마다 리스트업을 할 생각이라 간간히 업데이트된다고 생각하면됨
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>
반응형
'컴퓨터 관련 > 개발지식 정보' 카테고리의 다른 글
Five lines of code 책을 읽고나서 (0) | 2023.04.16 |
---|---|
리팩토링에 관한 다양한 방법들중 쓸만한 규칙 (0) | 2023.04.16 |
strategy pattern 과 template method pattern 비교 (0) | 2019.12.27 |
Visual Studio 2017 디스플레이 크기 에러 (0) | 2018.10.02 |
MSA(Micro Service Archiecture) 는 무엇인가? (0) | 2018.03.01 |