8 righe
79 B
Bash
8 righe
79 B
Bash
#!/bin/sh
|
|
#
|
|
if [ -r ~/todo.txt ]; then
|
|
echo
|
|
echo
|
|
cat ~/todo.txt
|
|
fi
|