Evgenii Legotckoi
Evgenii LegotckoiDec. 2, 2018, 9:58 a.m.

Using getopts in bash scripts to pass parameters

Content
  1. 1.

When developing a site to automate the deployment process, I wrote several bash scripts.

To customize the behavior of scripts, I use the transfer of arguments, which are handled in the bash script by the getopts library.


Getopts

Scripts typically use getopts to analyze the arguments passed to them. When you specify args on the command line, getopts analyzes these arguments instead of a script, and then the script uses the parsed data that getopts parsed.

For example, in my case I use several actions that must be performed by the script.

while getopts p:dicmz option
do
    case "${option}"
    in
    p) PASSWORD=${OPTARG};;                 # Password for reload services: gunicorn and celery
    d) DEPLOY_PROJECT_PACKAGES=true;;       # Deploy local projects packages
    i) INSTALL_REQUIREMENTS=true;;          # Install or update new packages from requirements
    c) COLLECTSTATIC=true;;                 # Execute collectstatic
    m) MIGRATE=true;;                       # Execute migrate
    z) INGORE_BACKUP=true;;                 # WARNING: Be careful with this option.
                                            # Do not use it, when execute migrations or add new application or git submodule
    esac
done

I am running a project on the site, installing or updating required packages in a project, building a new statics, migrating a database and, if necessary, ignoring the creation of a project backup, although I rarely use this. It is better to be safe once again and perform a backup.

Thus, the script can be run with parameters in this way.

./deploy.sh -icm -p mypassword

In this case, a password will be transferred to perform specific functions requiring a password, and installation or updating of required packages, static build and database migration will be performed.

The passed parameter not requiring an argument will be checked in the conditions so

if [ "$INGORE_BACKUP" ]
then
    # Deployment without backup"
else
    # Execute backup
fi
We recommend hosting TIMEWEB
We recommend hosting TIMEWEB
Stable hosting, on which the social network EVILEG is located. For projects on Django we recommend VDS hosting.

Do you like it? Share on social networks!

Comments

Only authorized users can post comments.
Please, Log in or Sign up
ОК

Qt - Test 001. Signals and slots

  • Result:47points,
  • Rating points-6
A
  • Alena
  • Jan. 19, 2025, 10:41 p.m.

C++ - Test 005. Structures and Classes

  • Result:58points,
  • Rating points-2
OI

C++ - Test 001. The first program and data types

  • Result:40points,
  • Rating points-8
Last comments
ИМ
Игорь МаксимовNov. 22, 2024, 10:51 p.m.
Django - Tutorial 017. Customize the login page to Django Добрый вечер Евгений! Я сделал себе авторизацию аналогичную вашей, все работает, кроме возврата к предидущей странице. Редеректит всегда на главную, хотя в логах сервера вижу запросы на правильн…
Evgenii Legotckoi
Evgenii LegotckoiNov. 1, 2024, 12:37 a.m.
Django - Lesson 064. How to write a Python Markdown extension Добрый день. Да, можно. Либо через такие же плагины, либо с постобработкой через python библиотеку Beautiful Soup
A
ALO1ZEOct. 19, 2024, 6:19 p.m.
Fb3 file reader on Qt Creator Подскажите как это запустить? Я не шарю в программировании и кодинге. Скачал и установаил Qt, но куча ошибок выдается и не запустить. А очень надо fb3 переконвертировать в html
ИМ
Игорь МаксимовOct. 5, 2024, 5:51 p.m.
Django - Lesson 064. How to write a Python Markdown extension Приветствую Евгений! У меня вопрос. Можно ли вставлять свои классы в разметку редактора markdown? Допустим имея стандартную разметку: <ul> <li></li> <li></l…
d
dblas5July 5, 2024, 9:02 p.m.
QML - Lesson 016. SQLite database and the working with it in QML Qt Здравствуйте, возникает такая проблема (я новичок): ApplicationWindow неизвестный элемент. (М300) для TextField и Button аналогично. Могу предположить, что из-за более новой верси…
Now discuss on the forum
n
nklyJan. 3, 2025, 1:52 p.m.
Нужно запретить перемещение только некоторых итемов, остальные перемещать можно. Вопрос решен. Узнать QModelIndex элемента на который мы перетаскиваем другой элемент, можно с помощью функции indexAt(event->position().toPoint()) представления QTreeViev вызываемой в переопр…
M
MarselAug. 17, 2023, 12:26 a.m.
OAuth2.0 через VK, получение email Спасибо большое за помощь и простите за то что отнял время своей невнимательностью.
Evgenii Legotckoi
Evgenii LegotckoiJune 25, 2024, 1:11 a.m.
добавить qlineseries в функции Я тут. Работы оень много. Отправил его в бан.
t
tonypeachey1Nov. 15, 2024, 5:04 p.m.
google domain [url=https://google.com/]domain[/url] domain [http://www.example.com link title]
NSProject
NSProjectJune 4, 2022, 1:49 p.m.
Всё ещё разбираюсь с кешем. В следствии прочтения данной статьи. Я принял для себя решение сделать кеширование свойств менеджера модели LikeDislike. И так как установка evileg_core для меня не была возможна, ибо он писался…

Follow us in social networks