summaryrefslogtreecommitdiffstats
path: root/clean_pbuilder.sh
blob: 8bf043d60397882211d027617c6be185f5109240 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash



newpkg=$(find /var/cache/pbuilder/result/ -name "*$1*changes")

echo 
for pkg in $newpkg; do
  echo " $(basename $pkg) " 
done

echo 
echo
echo -n "Press enter to continue or Ctrl+C to cancel"
read

rm -f /var/cache/pbuilder/result/*$1*

echo ""