todo added

This commit is contained in:
Dirk Alders 2022-05-30 11:01:04 +02:00
parent b51a5cfc29
commit 9d92f712d3
2 changed files with 7 additions and 0 deletions

2
add
View File

@ -6,6 +6,8 @@ if [[ -e $1 ]]; then
target="10_$target" target="10_$target"
elif [[ $target == "venv_prompt.sh" ]]; then elif [[ $target == "venv_prompt.sh" ]]; then
target="20_$target" target="20_$target"
elif [[ $target == "todo.sh" ]]; then
target="90_$target"
else else
target="50_$target" target="50_$target"
fi fi

5
available/todo.sh Normal file
View File

@ -0,0 +1,5 @@
#!/bin/sh
#
if [ -r ~/todo.txt ]; then
cat ~/todo.txt
fi