/usr/bin/powerline-lint is in powerline 1.2-2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #! /usr/bin/python
# vim:fileencoding=utf-8:noet
'''Powerline configuration checker.'''
from __future__ import (unicode_literals, division, absolute_import, print_function)
import argparse
import sys
from powerline.lint import check
parser = argparse.ArgumentParser(description=__doc__)
parser.add_argument('-p', '--config_path', action='append', metavar='PATH')
parser.add_argument('-d', '--debug', action='store_const', const=True)
if __name__ == '__main__':
args = parser.parse_args()
sys.exit(check(args.config_path, args.debug))
|