ÃüÁî˵Ã÷£º
²é¿´ÎļþÄÚÈÝ£¬Ò²¿ÉÒÔ¸øÎļþ×·¼ÓÄÚÈݵ½½áβ
Óï·¨£º
cat [-AbEnTv]
²ÎÊý£º
-A £ºÏ൱ÓÚ-vETµÄÕûºÏ²ÎÊý£¬¿ÉÒÔÁгöÒ»Ð©ÌØÊâ×Ö·û£¬¶ø²»Êǿհ׶øÒÑ
-b £ºÁгöÐкţ¬½ö¶Ô·Ç¿ÕÐкÅÏÔʾ£¬¿Õ°×Ðв»±ê¼ÇÐкÅ
-E £º½«½áβµÄ¶ÏÐÐ×Ö·û$ÏÔʾ³öÀ´
-n £º´òÓ¡³öÐкţ¬Á¬Í¬¿Õ°×ÐÐÒ²ÓÐÐкţ¬Óë-b²ÎÊý²»Í¬
-T £º½«[tab]°´¼üÒÔ^I ÏÔʾ³öÀ´
-v £ºÁгöһЩ¿´²»³öµÄÌØÊâ×Ö·û
catÖ÷ÒªÓÐÈý´ó¹¦ÄÜ£º
1.Ò»´ÎÏÔʾÕû¸öÎļþ¡£$ cat filename
2.´Ó¼üÅÌ´´½¨Ò»¸öÎļþ¡£$ cat > filename
Ö»ÄÜ´´½¨ÐÂÎļþ,²»Äܱà¼ÒÑÓÐÎļþ
3.½«¼¸¸öÎļþºÏ²¢ÎªÒ»¸öÎļþ¡£ $cat file1 file2 > file
cat >>oldboy.txt<
I am studing linux
EOF #EOF±ØÐëÔÚÐÐÊ×£¬ÊäÈëÍê³Éºó°´[Enter]¼´¿É
ÃüÁîʵ¼ù£º
[root@ www~]# cat /etc/issue
CentOS release 5.5 (Final)
Kernel \r on an \m
[root@ www~]# cat -n /etc/issue
1 CentOS release 5.5 (Final)
2 Kernel \r on an \m
3 -n²ÎÊý¿Õ°×ÐÐÒ²±ê¼ÇÐкÅ
[root@ www~]# cat -b /etc/issue
1 CentOS release 5.5 (Final)
2 Kernel \r on an \m -b²ÎÊý¿Õ°×ÐÐûÓÐÐкÅ
[root@yubing ~]# touch yubing.txt
[root@yubing ~]# cat >>yubing.txt<
> my name is yubing
> END
[root@yubing ~]# cat yubing.txt
my name is yubing
[root@yubing ~]#
[root@yubing ~]# cat >yubing.txt ×¢Òâ > ·ûºÅ
hi my name is yubing,
´Ë´¦ctrl+c½áÊøÌø³ö
[root@yubing ~]# ll
total 80
-rw------- 1 root root 887 Apr 7 01:47 anaconda-ks.cfg
-rw-r--r-- 2 root root 255 Jan 6 2007 crontab1
lrwxrwxrwx 1 root root 12 Apr 8 04:06 crontab2 -> /etc/crontab
-rw-r--r-- 1 root root 23947 Apr 7 01:47 install.log
-rw-r--r-- 1 root root 3619 Apr 7 01:46 install.log.syslog
drwxr-xr-x 7 root root 4096 Oct 28 2011 oldboy
-rw-r--r-- 1 root root 425 Apr 14 14:13 oldboy.tar.gz
-rw-r--r-- 1 root root 22 Apr 17 01:26 yubing.txt
[root@yubing ~]# cat >yubing.txt1
i love you
[root@yubing ~]# ll
total 88
-rw------- 1 root root 887 Apr 7 01:47 anaconda-ks.cfg
-rw-r--r-- 2 root root 255 Jan 6 2007 crontab1
lrwxrwxrwx 1 root root 12 Apr 8 04:06 crontab2 -> /etc/crontab
-rw-r--r-- 1 root root 23947 Apr 7 01:47 install.log
-rw-r--r-- 1 root root 3619 Apr 7 01:46 install.log.syslog
drwxr-xr-x 7 root root 4096 Oct 28 2011 oldboy
-rw-r--r-- 1 root root 425 Apr 14 14:13 oldboy.tar.gz
-rw-r--r-- 1 root root 21 Apr 17 01:30 yubing.txt
-rw-r--r-- 1 root root 11 Apr 17 01:31 yubing.txt1
[root@yubing ~]# cat yubing.txt yubing.txt1>yubing.txt2 ½«Á½¸öÎļþºÏ²¢³ÉÒ»¸öÎļþ
[root@yubing ~]# cat yubing.txt2
hi my name is yubing
i love you Á½¸öÎļþµÄÄÚÈݶ¼»áÏÔʾ
[root@yubing ~]#
×÷Õߣºyubing