mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
10 lines
375 B
Bash
Executable file
10 lines
375 B
Bash
Executable file
#!/bin/bash
|
|
echo "APT MIRRORS BEFORE:"
|
|
cat /etc/apt/apt-mirrors.txt
|
|
sudo sed -i 's@http://azure.archive.ubuntu.com@http://archive.ubuntu.com@gm' /etc/apt/apt-mirrors.txt
|
|
echo "APT MIRRORS AFTER:"
|
|
cat /etc/apt/apt-mirrors.txt
|
|
|
|
echo "ls -la /etc/apt/sources.list.d/"
|
|
ls -la /etc/apt/sources.list.d/
|
|
for f in /etc/apt/sources.list.d/*; do echo "####### $f ######"; cat $f; done
|