Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
123456789101112 |
- #!/bin/zsh
- #
- SCRIPTPATH="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
-
- if [[ (-e ~/bin) ]]; then
- echo "A ssh configuration already exists (~/bin)"
- echo "Remove this configuration and start the script again"
- else
- echo "Creating link"
- ln -vs $SCRIPTPATH/bin ~/bin
- fi
|