7 lines
144 B
Text
7 lines
144 B
Text
|
#!/bin/sh
|
||
|
file=$(find . -iname readme.md | tail -1)
|
||
|
if [ -e "$file" ]
|
||
|
then zread $file
|
||
|
else /bin/echo -e '\033[01;31m'"No readme file found"
|
||
|
fi
|