Created
March 27, 2016 07:04
-
-
Save brokendish/0694640bac789e7cd25f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#---------------------------------------------------- | |
#システムのコマンドを実行 | |
#Ctl+Cで止められる | |
#---------------------------------------------------- | |
#!/usr/bin/env python | |
import subprocess | |
for i in xrange(100): | |
cmd = "tail -f /var/log/syslog | cat " | |
subprocess.call(cmd, shell=True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment