legacy-dotfiles/zsh/functions/add_to_list
2014-07-01 22:53:27 +02:00

4 lines
109 B
Bash

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