citadel

My dotfiles, scripts and nix configs
git clone git://jb55.com/citadel
Log | Files | Refs | README | LICENSE

commands (129B)


      1 #!/bin/sh
      2 FIFO=${1:-"/tmp/cmds"}
      3 mkfifo $FIFO &> /dev/null
      4 while :; do bash < $FIFO && echo "== OK ==" || echo "!! ERR !!"; done