Update manpage name in README
[iotop.git] / iotop.py
blob13ed8737d2e8307f869c33975e2ebeacdef0cea6
1 #!/usr/bin/python
2 # iotop: Display I/O usage of processes in a top like UI
3 # Copyright (c) 2007, 2008 Guillaume Chazarain <guichaz@gmail.com>
4 # GPL version 2 or later
5 # See iotop --help for some help
7 import sys
9 from iotop.ui import main
11 try:
12 main()
13 except KeyboardInterrupt:
14 pass
15 sys.exit(0)