Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Detailed explanation of linux tee command

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/03 Report--

Detailed explanation of linux tee command

Function description: read the standard input data and output its contents into a file.

Grammar: tee [- ai] [--help] [--version] [file.]

Note: the tee instruction reads the data from the standard input device, outputs its contents to the standard output device, and saves it as a file.

Parameters:

-an or-- append appends to the existing file instead of overwriting it.

-iMuri or-- ignore-interrupts ignore the interrupt signal.

-- help online help.

-- version displays version information.

[root@localhost ~] # who | tee who.out

Root pts/0 2009-02-17 07:47 (123.123.123.123)

[root@localhost ~] # cat who.out

Root pts/0 2009-02-17 07:47 (123.123.123.123)

[root@localhost ~] # pwd | tee-a who.out

/ root

[root@localhost ~] # cat who.out

Root pts/0 2009-02-17 07:47 (123.123.123.123)

/ root

[root@localhost ~] #

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report