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.后端执行&    --表示该进程在后端执行

原文地址:https://www.cnblogs.com/yangzailu/p/11393350.html