mirror of
https://github.com/denisidoro/navi.git
synced 2026-01-23 18:26:28 +00:00
13 lines
No EOL
227 B
Bash
Executable file
13 lines
No EOL
227 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
export SCRIPT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
|
|
|
|
script() {
|
|
echo "#!/usr/bin/env bash"
|
|
echo "${SCRIPT_DIR}/navi" '$@'
|
|
}
|
|
|
|
BIN="/usr/local/bin/navi"
|
|
script > "$BIN"
|
|
chmod +x "$BIN" |