legacy-dotfiles/zsh/.zsh/functions/add-to-list
2014-08-21 00:14:54 +02:00

10 lines
223 B
Bash

# -*- mode: sh; -*-
if [[ ! "${(P)${1}}" =~ (^|:)"$2"(:|$) ]]; then
if [ -n "$3" ]; then
# Append
typeset -g $1="${(P)${1}}:$2"
else
# Prepend
typeset -g $1="$2:${(P)${1}}"
fi
fi