예제 #1
0
파일: ls.py 프로젝트: tabulon-ext/bup
def main(argv):
    git.check_repo_or_die()

    sys.stdout.flush()
    out = byte_stream(sys.stdout)
    # Check out lib/bup/ls.py for the opt spec
    rc = ls.via_cmdline(argv[1:], out=out)
    sys.exit(rc)
예제 #2
0
파일: ls-cmd.py 프로젝트: xiaofeng283-t/bup
#!/bin/sh
"""": # -*-python-*-
bup_python="$(dirname "$0")/bup-python" || exit $?
exec "$bup_python" "$0" ${1+"$@"}
"""
# end of bup preamble

from __future__ import absolute_import
import sys

from bup import git, ls


git.check_repo_or_die()

# Check out lib/bup/ls.py for the opt spec
rc = ls.via_cmdline(sys.argv[1:])
sys.exit(rc)
예제 #3
0
파일: ls-cmd.py 프로젝트: zzmjohn/bup
#!/bin/sh
"""": # -*-python-*-
bup_python="$(dirname "$0")/bup-python" || exit $?
exec "$bup_python" "$0" ${1+"$@"}
"""
# end of bup preamble

from __future__ import absolute_import
import sys

from bup import git, ls
from bup.io import byte_stream


git.check_repo_or_die()

sys.stdout.flush()
out = byte_stream(sys.stdout)
# Check out lib/bup/ls.py for the opt spec
rc = ls.via_cmdline(sys.argv[1:], out=out)
sys.exit(rc)
예제 #4
0
파일: ls-cmd.py 프로젝트: zeonin/bup
"""": # -*-python-*-
# https://sourceware.org/bugzilla/show_bug.cgi?id=26034
export "BUP_ARGV_0"="$0"
arg_i=1
for arg in "$@"; do
    export "BUP_ARGV_${arg_i}"="$arg"
    shift
    arg_i=$((arg_i + 1))
done
# Here to end of preamble replaced during install
bup_python="$(dirname "$0")/../../config/bin/python" || exit $?
exec "$bup_python" "$0"
"""
# end of bup preamble

from __future__ import absolute_import
import os.path, sys

sys.path[:0] = [os.path.dirname(os.path.realpath(__file__)) + '/..']

from bup import compat, git, ls
from bup.io import byte_stream

git.check_repo_or_die()

sys.stdout.flush()
out = byte_stream(sys.stdout)
# Check out lib/bup/ls.py for the opt spec
rc = ls.via_cmdline(compat.argv[1:], out=out)
sys.exit(rc)