...
Info |
---|
Теперь Вы можете запустить его в формате
|
...
Code Block | ||
---|---|---|
| ||
cat > get_sources.sh <<EOT #!/bin/bash COMPONENTS='main' CODENAME='du2-prebuild' while read component; do if [[ "" == "\$component" ]]; then continue fi apt-get source --download-only \$component reprepro -b /data/repo -C \$COMPONENTS includedsc \$CODENAME \$component*.dsc rm -rf \$component done < /data/repo/pkg/list_component EOT chmod 777 ./get_sources.sh |
...