Amazing-Python-Scripts

Форк
0
39 строк · 1.7 Кб
1
#! /bin/bash
2
##################################################################
3
# fixtool
4
# Copyright (C) 2018, David Arnold.
5
#
6
# Permission is hereby granted, free of charge, to any person obtaining a
7
# copy of this software and associated documentation files (the "Software"),
8
# to deal in the Software without restriction, including without limitation
9
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
10
# and/or sell copies of the Software, and to permit persons to whom the
11
# Software is furnished to do so, subject to the following conditions:
12
#
13
# The above copyright notice and this permission notice shall be included in
14
# all copies or substantial portions of the Software.
15
#
16
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22
# DEALINGS IN THE SOFTWARE.
23
#
24
##################################################################
25

26
# Find source directory of this script
27
SOURCE="${BASH_SOURCE[0]}"
28
# Resolve $SOURCE until the file is no longer a symlink
29
while [ -h "$SOURCE" ]; do
30
  DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
31
  SOURCE="$(readlink "$SOURCE")"
32
  # If $SOURCE was a relative symlink, we need to resolve it relative
33
  # to the path where the symlink file was located
34
  [[ $SOURCE != /* ]] && SOURCE="$DIR/$SOURCE"
35
done
36
ROOT="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
37

38
export PYTHONPATH=$ROOT/python
39
exec python3 $ROOT/python/fixtool/agent.py $*
40

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.