Unix/Linux : How to pipe/save output of a command to file?
Problem :
You need to capture/pipe or save the output of a command execution in Unix/Linux to a file. How to do that?
Solutions :
Use the greater than sign >
to save the output to a file.
For example :
cat /var/log > /tmp/varlog.log
ls /dir > dir.txt
**NOTE : >
will overwrite or create new file. >>
will append to existing file.
you can also use the logsave
command to capture the output. However, the logsave
command is only available on Linux platform.
For example :
logsave [options] /tmp/varlog.log cat /var/log
Save of the logsave
options are :
-a This option will cause the output to be appended to logfile, instead of replacing its current contents.
-s This option will cause logsave to skip writing to the log file text which is bracketed with a control-A (ASCII 001 or Start of Header)
and control-B (ASCII 002 or Start of Text). This allows progress bar information to be visible to the user on the console,
while not being written to the log file.
-v This option will make logsave to be more verbose in its output to the user.
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+87.3k Golang : How to convert character to ASCII and back
+10.8k Golang : How to transmit update file to client by HTTP request example
+7.3k Golang : How to convert strange string to JSON with json.MarshalIndent
+15.8k Golang : Get current time from the Internet time server(ntp) example
+6.5k Golang : Embedded or data bundling example
+13.7k Golang : Convert spaces to tabs and back to spaces example
+5.4k Golang : Display advertisement images or strings on random order
+13.6k Golang : Tutorial on loading GOB and PEM files
+6.1k PHP : How to handle URI or URL with non-ASCII characters such as Chinese/Japanese/Korean(CJK) ?
+4.7k JavaScript: Add marker function on Google Map
+15.2k Golang : Get query string value on a POST request
+8.2k Golang : Auto-generate reply email with text/template package