inbox do something tomorrow that i just remembered about but don't want to leave the command line
instructions in the readme
. they're easy.
https://github.com/brettweavnet/trello_cli
trello board list
trello list list -b <board-id>
touch /usr/local/bin/inbox
chmod +x /usr/local/bin/inbox
/usr/local/bin/inbox
:
#!/bin/bash
# example:
# inbox fix all the stuff
echo $@;
title="";
for i in $@
do
title="$title $i"
done
board_id="123";
list_id="456";
trello card create -b $board_id -l $list_id -n "$title";
inbox creating a card to go to my inbox list