Skip to content

Instantly share code, notes, and snippets.

@sgur
Created September 5, 2012 08:24
Show Gist options
  • Save sgur/3633246 to your computer and use it in GitHub Desktop.
Save sgur/3633246 to your computer and use it in GitHub Desktop.
collect plugins into "simplified/" directory
mkdir -p simplified
for d in bundle/* ; do
for p in $d/* ; do
if [ -d $p ]; then
cp -ulr $p simplified
fi
done
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment