scripts

Scripts for general automations
git clone git://git.laack.co/scripts.git
Log | Files | Refs

attach-abduco.sh (170B)


      1 #!/bin/bash
      2 
      3 if [ $1 ]; then
      4     abduco -A $1
      5 
      6 else
      7 
      8     SELECTION=$(abduco | tr '*' ' ' | awk '{print $5}' | tail -n+2 | fzf --print-query)
      9     abduco -A $SELECTION
     10 fi