Compare commits
1 Commits
archive/bu
...
archive/tr
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4359290b3c |
4
todo.sh
4
todo.sh
@@ -991,7 +991,7 @@ case $action in
|
||||
|
||||
# Split multiple depri's, if comma separated change to whitespace separated
|
||||
# Loop the 'depri' function for each item
|
||||
for item in $(echo $* | tr ',' ' '); do
|
||||
for item in ${*//,/ }; do
|
||||
getTodo "$item"
|
||||
|
||||
if [[ "$todo" = \(?\)\ * ]]; then
|
||||
@@ -1015,7 +1015,7 @@ case $action in
|
||||
|
||||
# Split multiple do's, if comma separated change to whitespace separated
|
||||
# Loop the 'do' function for each item
|
||||
for item in $(echo $* | tr ',' ' '); do
|
||||
for item in ${*//,/ }; do
|
||||
getTodo "$item"
|
||||
|
||||
# Check if this item has already been done
|
||||
|
||||
Reference in New Issue
Block a user