citadel

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

nncp-run (140B)


      1 #!/usr/bin/env bash
      2 
      3 dst=${1:-monad}
      4 shift
      5 
      6 if [ -t 0 ]; then
      7     echo -n "" | nncp-exec $dst cmd "$@"
      8 else
      9     nncp-exec $dst cmd "$@"
     10 fi
     11