The following command allows you to access the command n-4 in the history(vi /etc/apache/httpd.conf)
-
-
!vi
-
- Further application :
- !! //The last commant
- !23 //The 23th command
- !-2 // Execute the last command
- !?profil //The last command containing the word "profil"
- ^13^14^ //Substitution in the last command
많이 쓰이는 것 :
!cat - 실행된 명령어 중에 cat으로 시작하는 가장 최근의 명령어를 재실행
!?ifcfg-eth0 - 실행된 명령어 중에 ifcfg-eth0 문구가 들어간 가장 최근의 명령어를 재실행
!1523 - history 명령어를 먼저 실행 후 실행되었던 명령어를 먼저 확인. 그 중 1523 넘버의 명령어를 재실행
Shell(쉘) 팁.