Skip to content

Instantly share code, notes, and snippets.

@hryamzik
Created May 28, 2015 22:14
Show Gist options
  • Save hryamzik/69cd72143f6525af6cc8 to your computer and use it in GitHub Desktop.
Save hryamzik/69cd72143f6525af6cc8 to your computer and use it in GitHub Desktop.
#!/bin/bash
ls ~/.ssh/config.d/ | {
echo -n '' > ~/.ssh/config
while read file
do
cat ~/.ssh/config.d/$file >> ~/.ssh/config
echo '' >> ~/.ssh/config
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment