This file contains hidden or 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
#!/usr/bin/env python | |
import curses | |
import subprocess | |
import sys | |
from datetime import datetime | |
AUTHOR = "Jonathan Mackenzie" | |
NAME = "pqstat" | |
def get_qstat(args): | |
return subprocess.Popen(['qstat']+args,stdout=subprocess.PIPE).communicate()[0] | |
def main(scr): |