summaryrefslogtreecommitdiff
path: root/iotop.py
blob: 666c6b43bef5b323114abd6ad7555a66c844b259 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/python3
# 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)