Explorar el Código

Add Bash Safe Parent Dir

Schnippet to safely get the parent directory of a Bash script.
master
Nate Bohman hace 3 años
padre
commit
41969752d8
Firmado por: Nate Bohman <natrinicle@gmail.com> ID de clave GPG: C10546A54ABA1CE5
Se han modificado 1 ficheros con 6 adiciones y 0 borrados
  1. +6
    -0
      bash_parent_dir.sh

+ 6
- 0
bash_parent_dir.sh Ver fichero

@@ -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}"

Cargando…
Cancelar
Guardar