6 lines
144 B
Bash
Executable file
6 lines
144 B
Bash
Executable file
#!/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
|