/usr/bin/operon is in exfalso 3.5.3-1.
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
# -*- coding: utf-8 -*-
# Copyright 2012,2013 Christoph Reiter
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation
"""A simple command line tagger"""
import sys
import quodlibet
from quodlibet.operon import main
from quodlibet import util
if __name__ == "__main__":
quodlibet.init_cli()
sys.exit(main(util.argv))
|