create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| #!/usr/bin/env bash | |
| # | |
| # Approach: | |
| # 1. Find variable declaration in the form of "$my-var: anyvalue" | |
| # 2. Loop through found variables and find occurrences of each variable in all sass files | |
| # 3. Filter out vars that occurred only once | |
| if [ -z "$1" ]; then | |
| echo "Please specify a directory as the first argument." | |
| exit 1 |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"