mirror of
https://github.com/kennethreitz/bake.git
synced 2026-06-05 23:00:17 +00:00
7 lines
224 B
Bash
Executable File
7 lines
224 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
SOURCES_LIST='/etc/apt/sources.list'
|
|
PREVIOUS_SOURCES=$(cat $SOURCES_LIST)
|
|
|
|
perl -pe '/(http|https):\/\/(.*?)(\/|$)/ && s/$2/mirror.math.princeton.edu\/pub\//g' <<< "$PREVIOUS_SOURCES" > "$SOURCES_LIST"
|