mirror of
https://github.com/denisidoro/navi
synced 2024-11-22 19:43:06 +00:00
c4e9c7a90a
Use dictionaries + more
12 lines
387 B
Bash
Executable file
12 lines
387 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
export SCRIPT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
|
|
|
|
# please refer to https://github.com/denisidoro/dotfiles/blob/master/scripts/code/beautify
|
|
|
|
cd "${SCRIPT_DIR}"
|
|
find . -iname '*.sh' | xargs -I% dot code beautify %
|
|
find scripts/* | xargs -I% dot code beautify %
|
|
dot code beautify "${SCRIPT_DIR}/test/run"
|
|
dot code beautify "${SCRIPT_DIR}/navi"
|