8 lines
196 B
Plaintext
8 lines
196 B
Plaintext
|
#!/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")"
|