摘抄 cat 等
cat主要有三大功能:
1.一次显示整个文件。
$ cat filename
2.从键盘创建一个文件。
$ cat > filename
只能创建新文件,不能编辑已有文件.
3.将几个文件合并为一个文件。
$cat file1 file2 > file
示例
[email protected]:/var/www/test$ cat <<EOF >test.sh > #!/bin/bash > #your shell > EOF [email protected]-ubuntu:/var/www/test$ cat test.sh #!/bin/bash #your shell [email protected]-ubuntu:/var/www/test$ cat <<EOF >>test.sh > #your shell added > EOF [email protected]-ubuntu:/var/www/test$ cat test.sh #!/bin/bash #your shell #your shell added
时间: 2024-10-16 22:49:28