openpolitics.com

  • writing
  • quotes
  • Topics
    • academia
    • corruption
    • economics
    • education
    • environment
    • finance
    • history
    • hypertext
    • media
    • philosophy
    • psychology
    • religion
    • russia
    • ted nelson
  • about
← Previous Next →

How to run any script or cron job in Linux for every second

# crontab -e
* * * * * while true; do df -h /tmp >> /root/filesystem.txt & sleep 1; done