Tip #542 Implementing join in bash
Implementing "join" in bash (python's join, php's implode, etc.).NOTE: the $ means "type what follows at your terminal prompt" (some people thinks that the $ is part of the command).
$ list_join() { local OLDIFS=$IFS IFS=${1:?"Missing separator"}; shift echo "$*" IFS=$OLDIFS } $ list_join : one two three one:two:three
it only works for single characters, so this won't work as expected:
$ list_join ', ' one two three one,two,three
:P
also notice that you need to pass the list expanded (hence the name "list_join") so if you have an array you do:
$ myarray=(one two three) $ list_join : "${myarray[@]}" one:two:three
this function is pretty handy to use with fgrep (grep -f); fgrep is faster than grep because it does not use regular expressions so unless you actually need a regexp it's best to use that instead of normal grep, fgrep also accepts several words to search at once and works like an OR operation (if you chain several greps you get an AND operation) the only problem is that fgrep expects you to separate the words by newlines -quite ugly- so you can use the function like this:
$ fgrep "$(list_join $'\n' samus root)" /etc/group root::0:root bin::1:root,bin,daemon daemon::2:root,bin,daemon sys::3:root,bin adm::4:root,daemon disk::6:root wheel::10:root,samus log::19:root audio::92:samus optical::93:hal,samus storage:x:95:hal,samus
- TAGS:
alias aptitude at awk bash bc cal cat cd colrm comm cp csh curl cut date dd df dialog diff dirname dpkg du fc find fuser grep gs gzip history iconv kill ksh last less ln ls lsof lynx m4 md5sum mkdir mkfifo mkisofs mv mysql nc netstat openssl OSX perl ping popd ps pushd python read redirection rm scp screen sed sort ssh stat sudo svn tail tar tee test top tr uniq vim wc wget xargs