운영체제/리눅스(CentOS)21 help 명령어 리눅스 명령어에 대한 사용법을 알려주는 명령어이다. [root@localhost ~]# help GNU bash, version 4.1.2(1)-release (x86_64-redhat-linux-gnu) These shell commands are defined internally. Type `help' to see this list. Type `help name' to find out more about the function `name'. Use `info bash' to find out more about the shell in general. Use `man -k' or `info' to find out more about commands not in this list. A star (*) ne.. 2021. 8. 5. find 명령어 파일이나 디렉토리를 찾을때 사용하는 명령어 [root@localhost test]# find / -name "testfile2" /data/test/testfile2 [root@localhost test] 제가 실무에서 자주 쓰는 명령어 인데요. xargs, grep 하고 같이 사용하면 편리합니다. [root@localhost test]# find ./ -name "*" | xargs grep -n --color=auto "반갑습니다" 2>/dev/null ./testfile2:1:반갑습니다. [root@localhost test]# xargs는 앞 명령어의 결과를 다음 명령어의 입력으로 사용할때 적용하는 명령어 입니다. grep는 문자열이 있는 행을 찾아 출력하는 명령어 입니다. 2021. 6. 29. cp 명령어 파일이나 폴더를 복사하는 명령어 [root@localhost test]# cp testfile test1/test2/ [root@localhost test]# ls test1/test2/ testfile [root@localhost test]# 2021. 6. 24. mkdir 명령어 make directory디렉토리 생성 명령어 [root@localhost test]# mkdir make_folder [root@localhost test]# ls make_folder test1 testfile2 [root@localhost test]# 2021. 6. 23. 이전 1 2 3 4 5 6 다음