Last active
June 4, 2020 21:17
-
-
Save Crell/bf3576849769de76e887b9f18abbf957 to your computer and use it in GitHub Desktop.
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
echo "Installing Additional Plugins" | |
cd plugins | |
file="../plugins.txt" | |
while read -r line; do | |
[ "$line" = "\#*" ] && continue | |
git clone --depth=1 $line | |
done < grep -v -- "^#" "$file" | |
cd .. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment