hyh@hyh-OptiPlex-9020:~/git/hyh_home/1512_home/应用程序设计$ cat p > a1&
[1] 4626
hyh@hyh-OptiPlex-9020:~/git/hyh_home/1512_home/应用程序设计$ cat p > a2&
[2] 4627
hyh@hyh-OptiPlex-9020:~/git/hyh_home/1512_home/应用程序设计$ cat p > a3&
[3] 4628
hyh@hyh-OptiPlex-9020:~/git/hyh_home/1512_home/应用程序设计$ jobs
[1] 运行中 cat p > a1 &
[2]- 运行中 cat p > a2 &
[3]+ 运行中 cat p > a3 &
hyh@hyh-OptiPlex-9020:~/git/hyh_home/1512_home/应用程序设计$ cat > p
123[1] 已完成 cat p > a1 当写入123 ctrl+d 完成写入.
[2]- 已完成 cat p > a2
[3]+ 已完成 cat p > a3
hyh@hyh-OptiPlex-9020:~/git/hyh_home/1512_home/应用程序设计$ cat a1
hyh@hyh-OptiPlex-9020:~/git/hyh_home/1512_home/应用程序设计$ cat a2
hyh@hyh-OptiPlex-9020:~/git/hyh_home/1512_home/应用程序设计$ cat a3
123hyh@hyh-OptiPlex-9020:~/git/hyh_home/1512_home/应用程序设计$ cat > p
1234^Z ctrl+d 不能够写入,没有打开fd[0]
[1]+ 已中止 cat > p
hyh@hyh-OptiPlex-9020:~/git/hyh_home/1512_home/应用程序设计$ l
git