/
githubmirror
/
bash-completion
Обзор
Документация
Войти
/
githubmirror
/
bash-completion
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
setup-symlinks.sh
11 строк
199 B
Koichi Murase
refactor: update the locations of completions and helpers
31 дек 2025, 02:07
31 дек 2025, 02:07
55877b8
Код
Авторство
О чём код?
#!/bin/sh -eu targetdir=$1 shift target=$1 shift for file in "$@"; do rm -f "$targetdir/$file" "$targetdir/_$file" "$targetdir/$file.bash" ln -s "$target.bash" "$targetdir/$file.bash" done