yangzailu

导航

linux 管道,输出重定向,后端执行

 1. | (管道)


$time|data:"Y-m-d"
将前部的输出,作为后部的输入:
配合管道使用的命令,典型的就是grep,more

find --help | grep cnewer

./configer -help |grep apxs

 

2.more的典型使用

./configer -help | more   --- 不会一屏展示 空格 键按下依次展示

 

3.
输出重定向 >
./configer  --help > configure_help.txt

4.后端执行&    --表示该进程在后端执行

 

posted on 2019-08-22 11:30  飞离地平线  阅读(484)  评论(0编辑  收藏  举报