Inital commit

This commit is contained in:
Tyler Perkins
2021-10-22 11:00:53 -04:00
commit a18dff8441
6 changed files with 100 additions and 0 deletions

13
tpeek Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
#zero arguments
if [ "$#" -ne 0 ]; then
echo "Usage:" $0
echo "Returns what is at the top of the todo stack"
fi
#make correct directories
mkdir -p ~/.config/stackToDo
touch ~/.config/stackToDo/todo
tail -1 ~/.config/stackToDo/todo