Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
123456789101112 |
- #!/bin/zsh
- #
- SCRIPTPATH="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
-
- if [[ (-e ~/.ssh/config) ]]; then
- echo "A ssh configuration already exists (~/.ssh/config)"
- echo "Remove this configuration and start the script again"
- else
- echo "Creating link"
- ln -vs $SCRIPTPATH/.ssh/config ~/.ssh/config
- fi
|