/usr/lib/bup/cmd/bup-ls is in bup 0.29-3.
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 | #!/usr/bin/python2.7
import sys
from bup import git, vfs, ls
git.check_repo_or_die()
top = vfs.RefList(None)
# Check out lib/bup/ls.py for the opt spec
ret = ls.do_ls(sys.argv[1:], top, default='/', spec_prefix='bup ')
sys.exit(ret)
|