摘要:
写在前面:案例、常用、归类、解释说明。(By Jim)2>将STDEER输入到一个文件1>将STDOUT输入到一个文件&>将STDEER和STDOUT输入到同一个文件在脚本中重定向输入#!/bin/bash# redirecting file inputexec 0testoutecho "This should display on the monitor"echo "This should be stored in the file">&3echo "Then this should be back 阅读全文