I am running few scripts to check size of files and folders on ubuntu. How can i make these scripts automatic so that they might run automatically at start of day and printout result to a text file i am new to scripting Please reply
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
actually you can redirect
Notes:
|
|||
|
|
|
To printout to a text file is fairly simple. I'm assuming you're using python. Correct me if not. First, open a txt file with write permissions (the second argument of open). You can then use the .write() method to write to the file. Finally, it is good practice to close the file afterward.
For script automation, you're going to want to read up on cron jobs: http://en.wikipedia.org/wiki/Cron |
|||
|
|
man cron– fbynite Jan 2 at 5:34