Parcourir la source

Add Bash Safe Parent Dir

Schnippet to safely get the parent directory of a Bash script.
master
Nate Bohman il y a 3 ans
Parent
révision
41969752d8
Signé par: Nate Bohman <natrinicle@gmail.com> ID de la clé GPG: C10546A54ABA1CE5
1 fichiers modifiés avec 6 ajouts et 0 suppressions
  1. +6
    -0
      bash_parent_dir.sh

+ 6
- 0
bash_parent_dir.sh Voir le fichier

@@ -0,0 +1,6 @@
#!/usr/bin/env bash

# Get the parent dir to the one this script is located in.
base_dir=$(dirname -- "$(dirname -- "$(realpath -- "${0}")")")

echo "${base_dir}"

Chargement…
Annuler
Enregistrer