diff --git a/MasterPassword/C/bashlib b/MasterPassword/C/bashlib index 96d0dc6a..1ace7848 100755 --- a/MasterPassword/C/bashlib +++ b/MasterPassword/C/bashlib @@ -465,27 +465,6 @@ readwhile() { -# ___________________________________________________________________________ -# |__ pushqueue ______________________________________________________________| -# -# pushqueue element ... -# -# Pushes the given arguments as elements onto the queue. -# -pushqueue() { - [[ $_queue ]] || { - coproc _queue { - while IFS= read -r -d ''; do - printf '%s\0' "$REPLY" - done - } - } - - printf '%s\0' "$@" >&"${_queue[1]}" -} # _____________________________________________________________________ - - - # __________________________________________________________________________ # |__ popqueue ______________________________________________________________| #