8 lines
139 B
Bash
Executable File
8 lines
139 B
Bash
Executable File
#!/bin/bash
|
|
|
|
CURRENT_TASK=$(cd ~/.work-ledger && ./bin/ledger bal -p today --depth 1 ^Work | sed 's/\s\+/ /g')
|
|
|
|
echo $CURRENT_TASK
|
|
|
|
exit 0
|