zoukankan      html  css  js  c++  java
  • Linux

    标准输出重定向

    ">" 操作符:覆盖目标文件内容

    huey@huey-K42JE:~/huey/linux/cmdline$ date > foo
    huey@huey-K42JE:~/huey/linux/cmdline$ cat foo
    Fri May 8 09:55:42 CST 2015

    ">>" 操作符:在目标文件尾部追加输出内容

    huey@huey-K42JE:~/huey/linux/cmdline$ date >> foo
    huey@huey-K42JE:~/huey/linux/cmdline$ cat foo
    Fri May 8 09:55:42 CST 2015
    Fri May 8 09:57:02 CST 2015

    标准错误重定向

    "2>" 操作符:覆盖目标文件内容

    huey@huey-K42JE:~/huey/linux/cmdline$ ls inexistent_dir 2> ls-error.txt 
    huey@huey-K42JE:~/huey/linux/cmdline$ cat ls-error.txt 
    ls: cannot access inexistent_dir: No such file or directory

    "2>>" 操作符:在目标文件尾部追加输出内容

    huey@huey-K42JE:~/huey/linux/cmdline$ ls inexistent_dir 2>> ls-error.txt 
    huey@huey-K42JE:~/huey/linux/cmdline$ cat ls-error.txt 
    ls: cannot access inexistent_dir: No such file or directory
    ls: cannot access inexistent_dir: No such file or directory

    将标准输出与标准错误重定向到同一文件

    "&>" 操作符:覆盖目标文件内容

    huey@huey-K42JE:~/huey/linux/cmdline$ date &> foo
    huey@huey-K42JE:~/huey/linux/cmdline$ cat foo
    Fri May 8 10:16:12 CST 2015
    huey@huey-K42JE:~/huey/linux/cmdline$ ls inexistent_dir &> foo 
    huey@huey-K42JE:~/huey/linux/cmdline$ cat foo
    ls: cannot access inexistent_dir: No such file or directory

    "&>>" 操作符:在目标文件尾部追加输出内容

    huey@huey-K42JE:~/huey/linux/cmdline$ echo 'hello world' > foo
    huey@huey-K42JE:~/huey/linux/cmdline$ date &>> foo
    huey@huey-K42JE:~/huey/linux/cmdline$ ls inexistent_dir &>> foo 
    huey@huey-K42JE:~/huey/linux/cmdline$ cat foo
    hello world
    Fri May 8 10:25:24 CST 2015
    ls: cannot access inexistent_dir: No such file or directory

    标准输入重定向

    "<" 操作符

    huey@huey-K42JE:~/huey/linux/cmdline$ echo 'hello world' > foo
    huey@huey-K42JE:~/huey/linux/cmdline$ cat < foo
    hello world

    管道

    "|" 操作符

    huey@huey-K42JE:~/huey/linux/cmdline$ ls /usr/bin | grep '^zip'
    zip
    zipcloak
    zipgrep
    zipinfo
    zipnote
    zipsplit
  • 相关阅读:
    三角形的个数
    Nightmare(搜索)
    Prime Ring Problem(搜索)
    Safecracker(搜索)
    丑数
    八皇后问题(回溯法)
    Dijkstra
    floyd详解
    继续畅通工程(kruskal prim)
    畅通工程
  • 原文地址:https://www.cnblogs.com/huey/p/4487021.html
Copyright © 2011-2022 走看看