[ILUGC] 1D1C - logsave

  • From: Dhanasekar <tkdhanasekar@xxxxxxxxx>
  • To: ilugc@xxxxxxxxxxxxx, kanchilug@xxxxxxxxxxxxx
  • Date: Sat, 8 Oct 2022 06:00:00 +0530

logsave  - it  will  execute  cmd_prog with the specified argument,
                and save a copy of its output to logfile
$ sudo logsave [filename] [command]

To save the output of *free -h *command
$ sudo logsave log_file.txt free -h
$ cat log_file.txt

To append the output of the *df -Th* command to an already existing file
log_file.txt
$ sudo logsave log_file.txt df -Th
$ cat log_file.txt

To save the output of *du -hs /home/ilugc *in /tmp/output.txt
$ sudo logsave /tmp/output.txt du -hs /home/ilugc

To save the output of *ls* in /tmp/log_output.txt
$ sudo logsave /tmp/log_output.txt ls



regards,
T.Dhanasekar


---
Mailing List Guidelines: https://ilugc.in/mailing-list-guidelines
Web: http://ilugc.in/
Internet Relay Chat: #ilugc on libera.chat

Other related posts:

  • » [ILUGC] 1D1C - logsave - Dhanasekar