mirror of
https://github.com/dvorka/hstr.git
synced 2024-11-15 12:30:45 +08:00
11 lines
106 B
Bash
11 lines
106 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
for DISTRO in precise quantal saucy trusty
|
||
|
do
|
||
|
|
||
|
sudo pbuilder --create ${DISTRO}
|
||
|
|
||
|
done
|
||
|
|
||
|
# eof
|