X-Git-Url: https://plomlompom.com/repos/foo.html?a=blobdiff_plain;f=all_new_2018%2Finstall_for_target.sh;h=9d765aa97d6662e733262d33ed08e54e6a3e14a6;hb=7f8ab8cff7b311ce7a8d6fa2e3979e56c29a2a7a;hp=7693a0530174eb1aaa148e205d52e923a49aa097;hpb=115ec0e7df4d5af8de51e45cd0182b5cfddc2147;p=config diff --git a/all_new_2018/install_for_target.sh b/all_new_2018/install_for_target.sh index 7693a05..9d765aa 100755 --- a/all_new_2018/install_for_target.sh +++ b/all_new_2018/install_for_target.sh @@ -1,6 +1,8 @@ #!/bin/sh # Walks through the package names in the argument-selected files of # apt-mark/ and ensures the respective packages are installed. +# +# Ignores anything in an apt-mark/ file after the last newline. set -e config_tree_prefix="${HOME}/config/all_new_2018/apt-mark/" @@ -8,6 +10,7 @@ config_tree_prefix="${HOME}/config/all_new_2018/apt-mark/" for target in "$@"; do path="${config_tree_prefix}${target}" cat "${path}" | while read line; do + echo "$line" if [ ! $(echo "${line}" | cut -c1) = "#" ]; then apt-get -y install "${line}" fi