/usr/bin/yokadid is in yokadi 0.14.0-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 | #! /usr/bin/python
# -*- coding: utf-8 -*-
"""This is just a wrapper to yokadi package that rely in standard python site-package
This wrapper is intended to be placed in user PATH and to be executable
@author: Sébastien Renard (sebastien.renard@digitalfox.org)
@license:GPL v3 or later
"""
import os
fromsrc_py = os.path.join(os.path.dirname(__file__), "fromsrc.py")
if os.path.exists(fromsrc_py):
import fromsrc
from yokadi import yokadid
yokadid.main()
|