mirror of
https://github.com/denisidoro/navi.git
synced 2026-01-23 18:26:28 +00:00
15 lines
No EOL
257 B
Bash
Executable file
15 lines
No EOL
257 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" '"$@"'
|
|
}
|
|
|
|
folder="${1:-/usr/local/bin}"
|
|
bin="${folder}/navi"
|
|
|
|
script > "$bin"
|
|
chmod +x "$bin" |