summaryrefslogtreecommitdiffstats
path: root/communityco
blob: f4f3e97d4a9cbb5f4ed7e9f079902f0fb85be2b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

if [ "$1" = '' ]; then
	echo 'Usage: communityco <package name> [<package name>]'
	exit 1
fi

for i in "$@"; do
	svn co svn+ssh://aur.archlinux.org/srv/svn-packages/$i
done

# vim: set noexpandtab tabstop=8 shiftwidth=8 wrap:textwidth=132 autoindent
# kate: indent-mode normal; indent-width 8; tab-indents on; tab-width 8; word-wrap on; word-wrap-column 132