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

4 lines
109 B
Bash

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