diff options
-rwxr-xr-x | kiss | 13 |
1 files changed, 2 insertions, 11 deletions
@@ -1259,20 +1259,11 @@ args() { pkg_swap "$@" else - set +f - - log Alternatives: - # Go over each alternative and format the file # name for listing. (pkg_name>usr>bin>ls) - for pkg in "$sys_db/../choices"/*; do + set +f; for pkg in "$sys_db/../choices"/*; do printf '%s\n' "${pkg##*/}" - done | - - sed 's|>| /|; s|>|/|g; /\*/d' - - log note "Think about what you are doing" - log note "for this feature requires thought" + done | sed 's|>| /|; s|>|/|g; /\*/d' fi ;; |