标签:
Linux环境中支持输入输出重定向,用符号<和>来表示。
/*
语法:命令< 文件
说明:将文件做为命令的输入。
*/
mail -s "mail lee” lee@lee.com < lee1
//将文件lee1 当做信件的内容,主题名称为mail lee,送给收信人。
/*
语法:命令 > 文件
说明:将文件做为命令的输入。
*/
[dell@localhost ~]$ echo Hello world > hello.c
[dell@localhost ~]$ ls
Downloads FirstJar hadoop hello.c input output
[dell@localhost ~]$ cat -b hello.c
1 Hello world
[dell@localhost ~]$ ls -l > hello.c
[dell@localhost ~]$ ls
Downloads FirstJar hadoop hello.c input output
[dell@localhost ~]$ cat -n hello.c
1 总用量 20
2 drwxrwxr-x. 3 dell dell 4096 11月 3 15:40 Downloads
3 drwxrwxr-x. 2 dell dell 4096 11月 4 16:54 FirstJar
4 drwxrwxr-x. 16 dell dell 4096 11月 4 18:09 hadoop
5 -rw-rw-r--. 1 dell dell 0 11月 7 18:36 hello.c
6 drwxrwxr-x. 2 dell dell 4096 11月 4 16:05 input
7 drwxrwxr-x. 3 dell dell 4096 11月 4 17:03 output
[dell@localhost ~]$
标签:
原文地址:http://www.cnblogs.com/fengkang1008/p/4652265.html