zoukankan      html  css  js  c++  java
  • Save output to a text file from Mac terminal

     

    Simply with output redirection:

    system_profiler > file.txt

    Basically, this will take the output of system_profiler and save it to the file file.txt. There are technically two different output "streams", standard output, and standard error. They are treated separately, and if you use the simple redirection method above, you will only redirect standard output to the file. If you want to redirect both standard output and standard error, you could do this:

    system_profiler &> file.txt

    The & tells the shell to redirect the standard output and standard error to the file.

    If you want to just output standard error, you can do this:

    system_profiler 2> file.txt

    The 2 lets the shell know that it needs to only redirect standard error.

    Using the > will overwrite the file if it's already there. If you want to append it to a file without erasing the old one, you can use >>, like so:

    system_profiler >> file.txt

    You can of course use the & and 2 for sending both standard out and standard error, and just standard error with the >> operator.

  • 相关阅读:
    linux常用的命令
    针对无线信道衰落特性分析3G,4G,5G的关键技术异同点
    re-id 资料集
    kissme
    数据集
    matlab print,disp,fprint,fscan
    PCA样本数量少于矩阵维数
    pca降维详细过程
    TOJ 1856 Is It A Tree?
    POJ 2570 Fiber Network
  • 原文地址:https://www.cnblogs.com/rosepotato/p/3923983.html
Copyright © 2011-2022 走看看