shellnotes/util/listnotes/v/v.sh

16 lines
367 B
Bash
Raw Normal View History

2023-08-20 19:39:15 +02:00
:<<'info'
shellnotes - v.sh
(C) Dimitris Marakomihelakis
Released under the "All rights reserved" category. See the RIGHTS.txt file
in /docs/github/ for its full text.
info
echo "Press 'Q' to move from one note to the other."
sleep 3
for file in "$DEFAULT_PATH"/*; do
if [ -f "$file" ]; then
echo "Displaying content of file: $file"
less "$file"
fi
done