Control Charaters
________________________________________________________________________________
Ctrl + C Terminates the command currently running.
Ctrl + D Indicates end-of-file or exit.
Ctrl + U Erases all characters on the current command line.
Ctrl + W Erase the last word on the command line.
Ctrl + S Stops output to the screen
Ctrl + Q Restarts output to the screen after you have pressed Control-S
________________________________________________________________________________
[실습1] <Ctrl + C>
# man ls
<Ctrl + C>
# find / -name core -type f
<Ctrl + C>
[실습2] <Ctrl + D>
# cat > file1
Hello, Solaris
<Ctrl + D>
# telnet 172.16.8.254
root/knit
<Ctrl + D>
[실습3] <Ctrl + U>
# find / -name core -type f <Ctrl + U>
[실습4] <Ctrl + W>
# find / -name core -type f <Ctrl + W> <Ctrl + W> <Ctrl + W>
[실습5] <Ctrl + S>, <Ctrl + Q>
# du /
<Ctrl + S>
<Ctrl + Q>
<Ctrl + S>
<Ctrl + C>
반응형
'Net' 카테고리의 다른 글
IP,ICMP,ARP,ROUTE(간단) (0) | 2008.06.19 |
---|---|
프로토콜 (+TCP+UDP) (0) | 2008.06.19 |
솔라리스 GUI 환경 종류 (0) | 2008.06.19 |
기본 디렉토리 구조 (0) | 2008.06.19 |
Solaris 9 Installation Process (0) | 2008.06.19 |