I want to write batch or something, that will write output of top
into a file on login.
I did top >> output-file
, but it contains some strange character!
Can somebody give a simple tutorial about how to write batch file in Linux?
I want to write batch or something, that will write output of top
into a file on login.
I did top >> output-file
, but it contains some strange character!
Can somebody give a simple tutorial about how to write batch file in Linux?
Try the following
The
-b
is for batch mode, which should prevent the strange characters. The-n1
tells it to only print one iteration.Go to terminal and type:
The output of top command will be now stored in a text file which is located in your Home directory.
See: Bash scripting Tutorial.