File: iotop.py

package info (click to toggle)
iotop 0.6-24-g733f3f8-1
  • links: PTS
  • area: main
  • in suites: buster
  • size: 240 kB
  • sloc: python: 1,402; makefile: 3
file content (15 lines) | stat: -rwxr-xr-x 303 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/python
# iotop: Display I/O usage of processes in a top like UI
# Copyright (c) 2007, 2008 Guillaume Chazarain <guichaz@gmail.com>
# GPL version 2 or later
# See iotop --help for some help

import sys

from iotop.ui import main

try:
    main()
except KeyboardInterrupt:
    pass
sys.exit(0)