]> git.phdru.name Git - dotfiles.git/blob - bin/PS
Set LESS_TERMCAP_* for light and dark backgrounds
[dotfiles.git] / bin / PS
1 #! /usr/bin/env python
2
3 import sys, os
4
5 args = ' '.join(sys.argv[1:])
6 if "--sort=" not in args:
7    args += " --sort=user"
8
9 pager = os.environ.get("PAGER", "more")
10 os.system("ps %s | %s" % (args, pager))