Bash script: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

11 March 2024

  • curprev 23:4823:48, 11 March 2024T1t0 talk contribs 706 bytes +706 Created page with "= Security = * about variable quotes https://unix.stackexchange.com/questions/171346/security-implications-of-forgetting-to-quote-a-variable-in-bash-posix-shells = Parameter substitution = * from https://tldp.org/LDP/abs/html/parameter-substitution.html * and https://www.cyberciti.biz/tips/bash-shell-parameter-substitution-2.html <pre> #!/usr/bin/env bash set -o errexit -o nounset -o pipefail BAR_A_ROOT=1 BAR_A_PATHS=2 BAR_B_ROOT=3 BAR_C_PATHS=4 BAR_D_ROOT=5 BAR..."