Created
July 27, 2019 08:46
-
-
Save cereme/1bd9b2bde4a7951190ca634a64658a21 to your computer and use it in GitHub Desktop.
add_repo_to_sourcerer.sh
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
array=($(ls -d */)) | |
for elem in ${array[@]}; do | |
sourcerer add ./${elem} | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment