9 lines
177 B
Bash
Executable file
9 lines
177 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
for task in "$@"; do
|
|
echo "removing package source /etc/apt/sources.list.d/99$task.list"
|
|
rm -f "/etc/apt/sources.list.d/99$task.list"
|
|
done
|
|
apt-get update
|