8 lines
196 B
Bash
Executable File
8 lines
196 B
Bash
Executable File
#!/bin/bash
|
|
|
|
[ "$1" = "usage" ] && echo " ls" && echo " ls, highlighting 'req:'s" && exit 0
|
|
shift
|
|
|
|
echo -e "$("$TODO_FULL_SH" command ls $@ |
|
|
sed "s/\(req:[^ $]*\)/$RED\1$DEFAULT/g")"
|