Typically, the syntax of these characters is as follows, using < to
redirect input, and > to redirect output.

command1 > file1

executes command1, placing the output in file1, as opposed to displaying it at the terminal, which is the usual destination for standard output. This will clobber any
existing data in file1.

Using

command1 < file1

executes command1, with file1 as the source of input, as opposed to thekeyboard,
which is the usual source for standard input.

command1 < infile > outfile

combines the two capabilities: command1 reads from infile and writes tooutfile

Variants[edit]

To append output to the end of the file, rather than clobbering it, use the>> operator:

command1 >> file1

To read from a stream literal (an inline file, passed to the standard input), one can use a here document, using
the << operator:

tr a-z A-Z << END_TEXT
one two three
uno dos tres
END_TEXT

To read from a string, one can use a here string, using the <<< operator:

tr a-z A-Z <<< "one two three"

or:

NUMBERS="one two three"
tr a-z A-Z <<< "$NUMBERS"

最新文章

  1. ArcGIS Engine开发之属性查询
  2. webkit浏览器css设置滚动条
  3. MVC解决方案发布IIS 登录页面需要输入两次帐号问题
  4. Linux及安全——模块
  5. VCL自带的TabControl真心不好用...
  6. 基于FPGA的红外遥控解码与PC串口通信
  7. HDU 5875 st+二分区间
  8. 剖析Prometheus的内部存储机制
  9. 利用spring,实现package下的类扫描
  10. Java并发系列[7]----CountDownLatch源码分析
  11. 网络通信中tcp多客户端连接
  12. CS通用项目系统搭建——三层架构第二天 (补一篇完整的SqlHelper)
  13. short s1 = 1; s1 = s1 + 1;和 short s1 = 1; s1 += 1;的问题,终于弄懂了
  14. Dubbo服务容错
  15. 10.29 正睿停课训练 Day11
  16. lua函数定义
  17. SQL Server:获取本月最后一天[转]
  18. 【Javascript Demo】无刷新预览所选择的图片
  19. 《C++ Primer Plus》第11章 使用类 学习笔记
  20. Design Pattern: Gof

热门文章

  1. email program (客户端)演变过程有感
  2. configSections必须是根节点下第一个节点
  3. 微信技术分享:微信的海量IM聊天消息序列号生成实践(算法原理篇)
  4. Git使用详细教程(5):修改提交说明
  5. Kali学习笔记9:端口扫描详解(上)
  6. spring中的mybatis的sqlSession是如何做到线程隔离的?
  7. Oracle递归查询start with connect by prior
  8. 性能瓶颈之Source
  9. Impl模式实现之注意内联
  10. Kubernetes集群搭建之Etcd集群配置篇