운영체제/리눅스(CentOS)51 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. mv 명령어 파일이동 및 파일명 변경 명령어 [root@localhost test]# ls test1 testfile testfile2 [root@localhost test]# mv testfile changefile [root@localhost test]# ls changefile test1 testfile2 [root@localhost test]# [root@localhost test]# ls changefile test1 testfile2 [root@localhost test]# mv changefile test1/changefile [root@localhost test]# ls test1 changefile test2 [root@localhost test]# 2021. 6. 22. history 명령어 이전에 실행한 명령서 보기 [root@localhost /]# history 870 mysql --verbose --help | grep -A 1 'Default options' 871 find / -name my*.cnf 872 cd /usr/lcoal 873 cd /usr/local 874 ls 875 cd mysql/l 876 cd mysql 877 ls 878 cd support-files/ 879 ls 880 cp my-large.cnf /etc/my.cnf 881 vi /etc/my.cnf 882 service mysqld restart 883 less /etc/my.cnf 884 less /usr/local/apache/conf/httpd.conf 885 less --help 886 less.. 2021. 6. 18. 이전 1 ··· 8 9 10 11 12 13 다음