mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
11 lines
212 B
Bash
Executable file
11 lines
212 B
Bash
Executable file
#!/usr/bin/env bash
|
|
. bash_tap_tw.sh
|
|
|
|
# Setup the tasks
|
|
task add Participate in the marine search
|
|
task add Find the pearls
|
|
|
|
# Search for tasks containing "mar"
|
|
task mar
|
|
task mar count
|
|
[[ `task mar count` == 1 ]]
|