6 lines
162 B
Bash
Executable File
6 lines
162 B
Bash
Executable File
#!/bin/sh
|
|
[ "$3" = "1" ] || exit 0
|
|
DOTFILES=$(readlink -nf "$(dirname "$0")/..")
|
|
ln -sf "$DOTFILES/mksh/mkshrc" "$HOME/.mkshrc"
|
|
echo "dotfiles: linked ~/.mkshrc"
|