citadel

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

fuzz-gh-issue-list (183B)


      1 #!/usr/bin/env bash
      2 
      3 issues() {
      4 if [ -z "$1" ]; then
      5 	gh issue list
      6 else
      7 	gh issue list --search "$@"
      8 fi
      9 }
     10 
     11 
     12 id=$(issues "$@" | fuzzer | cutt -f1)
     13 echo gh issue view --comments "$id"