add apt-mock-remove script

This commit is contained in:
Sergey Dolin
2020-10-26 19:30:30 +05:00
parent babd2e2156
commit 4419d31ea7
4 changed files with 22 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
#!/bin/bash -e
prefix=/usr/local/bin
for tool in apt apt-get apt-fast;do
rm $prefix/$tool
done