Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
123456789101112 |
- #!/bin/zsh
- #
- SCRIPTPATH="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
-
- if [[ (-e ~/.nemo.json) ]]; then
- echo "A nemo configuration already exists (~/.nemo.json)"
- echo "Remove this configuration and start the script again"
- else
- echo "Creating link"
- ln -vs $SCRIPTPATH/.nemo.json ~/
- fi
|