6 lines
61 B
Bash
6 lines
61 B
Bash
|
#!/bin/sh
|
||
|
#
|
||
|
if [ -r ~/todo.txt ]; then
|
||
|
cat ~/todo.txt
|
||
|
fi
|