如何编写一个 bash 脚本来让用户选择 MIRROR 环境变量的值?

如何编写一个 bash 脚本来让用户选择 MIRROR 环境变量的值?

我目前正在编写一个 Bash 函数,该函数在调用时会要求用户从 Sabayon 的镜像列表中进行选择,但我希望每个选项都可以包含有关镜像的信息,例如其国家/地区和连接速度。目前我有这个 Bash 函数:

function sabayon-mirror {
  L=('ftp://mirrors.coopvgg.com.ar/sabayon/ 
  ftp://gd.tuwien.ac.at/linux/sabayonlinux/
  ftp://mirror.optusnet.com.au/sabayon')
  select x in "${L[@]}"
  do
    export MIRROR="$x"
  done
}

在每个 URL 之后添加镜像信息会使该信息被视为另一个可供选择的选项。

编辑:混沌的答案是我最初想要的,但如果你有一个答案不需要我手动列出每个镜像(而是可以从远程列表中获取它),我仍然很想听听它。

答案1

那个怎么样:

function sabayon-mirror {
  L=('Info about mirror 1 - ftp://mirrors.coopvgg.com.ar/sabayon/' 
  'Info about mirror 2 - ftp://gd.tuwien.ac.at/linux/sabayonlinux/'
  'Info about mirror 3 - ftp://mirror.optusnet.com.au/sabayon')
  select x in "${L[@]}"
  do
    export MIRROR="${x#*-}"
  done
}

信息是项目的一部分。但是,当导出变量值时,它会被删除。

答案2

您正在脚本中使用单个条目定义一个数组。由于您单引号所有元素,它们将被视为单个长字符串。 bash 中的数组元素由空格分隔,因此您需要单独引用每个元素:

L=('ftp://mirrors.coopvgg.com.ar/sabayon/' 
  'ftp://gd.tuwien.ac.at/linux/sabayonlinux/'
  'ftp://mirror.optusnet.com.au/sabayon')

也就是说,由于您使用的是 bash,因此可以使用关联数组:

function sabayon-mirror {
  declare -A L=(
    [Info about mirror 1]="ftp://mirrors.coopvgg.com.ar/sabayon/"
    [Info about mirror 2]="ftp://gd.tuwien.ac.at/linux/sabayonlinux/"
    [Info about mirror 3]="ftp://mirror.optusnet.com.au/sabayon")
  select x in "${!L[@]}"
  do
    export MIRROR="${L[$x]}"
  done
}

考虑到这一点,我从以下位置获取了 Sabyon 镜像列表:这里并为您编写了该函数:

## Declare the associative array
declare -A L=(
[Argentina 1]="ftp://mirrors.coopvgg.com.ar/sabayon/entropy"              [Argentina 2]="http://mirrors.coopvgg.com.ar/sabayon/entropy"
[Austria 1]="ftp://gd.tuwien.ac.at/linux/sabayonlinux/entropy"            [Austria 2]="http://gd.tuwien.ac.at/linux/sabayonlinux/entropy"
[Australia 1]="ftp://mirror.internode.on.net/pub/sabayon/entropy"         [Australia 2]="http://mirror.internode.on.net/pub/sabayon/entropy"
[Australia 3]="ftp://mirror.optusnet.com.au/sabayon/entropy"              [Australia 4]="http://mirror.optusnet.com.au/sabayon/entropy"
[Belgium 1]="ftp://ftp.belnet.be/mirror/sabayonlinux/entropy"             [Belgium 2]="http://ftp.belnet.be/mirror/sabayonlinux/entropy"
[Brazil 1]="ftp://sabayon.c3sl.ufpr.br/sabayon/entropy"                   [Brazil 2]="http://sabayon.c3sl.ufpr.br/entropy"
[Czech Republic 1]="ftp://mirror.dkm.cz/pub/sabayon/entropy"              [Czech Republic 2]="http://sabayon.mirror.dkm.cz/pub/sabayon/entropy"
[Germany 1]="http://mirror.de.sabayon.org/entropy"                        [Denmark 1]="ftp://ftp.klid.dk/sabayonlinux/enttropy"
[Denmark 2]="http://ftp.klid.dk/sabayonlinux/entropy"                     [Greece 1]="ftp://ftp.cc.uoc.gr/mirrors/linux/SabayonLinux/entropy"
[Greece 2]="http://ftp.cc.uoc.gr/mirrors/linux/SabayonLinux/entropy"      [Hungary 1]="ftp://ftp.fsn.hu/pub/linux/distributions/sabayon/entropy"
[Hungary 2]="http://ftp.fsn.hu/pub/linux/distributions/sabayon/entropy"   [Italy 1]="http://mirror.it.sabayon.org/entropy"
[Italy 2]="ftp://na.mirror.garr.it/mirrors/sabayonlinux/entropy"          [Italy 3]="http://na.mirror.garr.it/mirrors/sabayonlinux/entropy"
[Japan 1]="ftp://ftp.riken.jp/Linux/sabayon/entropy"                      [Japan 2]="http://ftp.riken.jp/Linux/sabayon/entropy"
[Japan 3]="ftp://ftp.kddilabs.jp/Linux/packages/sabayonlinux/entropy"     [Japan 4]="http://ftp.kddilabs.jp/Linux/packages/sabayonlinux/entropy"
[Japan 5]="http://ftp.tsukuba.wide.ad.jp/Linux/sabayon/entropy"           [Netherlands 1]="ftp://ftp.nluug.nl/pub/os/Linux/distr/sabayonlinux/entropy"
[Netherlands 2]="http://ftp.nluug.nl/os/Linux/distr/sabayonlinux/entropy" [Netherlands 3]="ftp://ftp.surfnet.nl/pub/os/Linux/distr/sabayonlinux/entropy"
[Portugal 1]="ftp://glua.ua.pt/sabayon/entropy"                           [Portugal 2]="ftp://ftp.rnl.ist.utl.pt/pub/sabayon/entropy"
[Portugal 3]="http://ftp.rnl.ist.utl.pt/pub/sabayon/entropy"              [Russian Federation 1]="ftp://mirror.yandex.ru/sabayon/entropy"
[Russian Federation 2]="http://mirror.yandex.ru/sabayon/entropy"          [Sweden 1]="ftp://ftp.portlane.com/pub/os/linux/sabayon/entropy"
[Sweden 2]="http://ftp.portlane.com/pub/os/linux/sabayon/entropy"         [United States 1]="ftp://mirrors-usa.go-parts.com/sabayon/entropy"
[United States 2]="http://mirrors-usa.go-parts.com/sabayon/entropy"       [United States 3]="ftp://mirror.cs.vt.edu/pub/SabayonLinux/entropy"
[United States 4]="http://mirror.cs.vt.edu/pub/SabayonLinux/entropy"      [United States 5]="http://cross-lfs.sabayonlinux.org/entropy"
[United States 6]="http://mirror.clarkson.edu/sabayon/entropy"            [United States 7]="http://mirror.umd.edu/sabayonlinux/entropy"
[South Africa 1]="ftp://sabayon.mirror.ac.za/entropy"                     [South Africa 2]="http://sabayon.mirror.ac.za/entropy"
)
## Unfortunately, associative arrays are not stored in the
## order you create them with so, to have the select show
## sorted options, we need a second, helper array.
sorted=(
[1]="Argentina 1"             [2]="Argentina 2"             [3]="Australia 1"
[4]="Australia 2"             [5]="Australia 3"             [6]="Australia 4"
[7]="Austria 1"               [8]="Austria 2"               [9]="Belgium 1"
[10]="Belgium 2"              [11]="Brazil 1"               [12]="Brazil 2"
[13]="Czech Republic 1"       [14]="Czech Republic 2"       [15]="Denmark 1"
[16]="Denmark 2"              [17]="Germany 1"              [18]="Greece 1"
[19]="Greece 2"               [20]="Hungary 1"              [21]="Hungary 2"
[22]="Italy 1"                [23]="Italy 2"                [24]="Italy 3"
[25]="Japan 1"                [26]="Japan 2"                [27]="Japan 3"
[28]="Japan 4"                [29]="Japan 5"                [30]="Netherlands 1"
[31]="Netherlands 2"          [32]="Netherlands 3"          [33]="Portugal 1"
[34]="Portugal 2"             [35]="Portugal 3"             [36]="Russian Federation 1"
[37]="Russian Federation 2"   [38]="South Africa 1"         [39]="South Africa 2"
[40]="Sweden 1"               [41]="Sweden 2"               [42]="United States 1"
[43]="United States 2"        [44]="United States 3"        [45]="United States 4"
[46]="United States 5"        [47]="United States 6"        [48]="United States 7"
)
select x in "${sorted[@]}"
do
    export MIRROR="${L[$x]}"
    break
done

肯定有更好的方法来做到这一点,我确信可用的镜像存储在您的 Sabayon 系统中的某个位置,但我不使用 Sabayon 所以我不知道。根据我上面链接到的页面,它们可能存储在/etc/entropy/repositories.conf.d.如果您使用该目录的格式编辑您的问题,我们应该能够帮助您动态生成镜像列表。

相关内容