aboutsummaryrefslogtreecommitdiff
path: root/scripts/prepend
blob: ef10da1b0d2a164b07b23fcf1422bef563a495b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

prep="$1"
shift

for n in "$@"
do
	ret="$ret $prep$n"
done

echo "$ret"