readded udpated scripts directory

This commit is contained in:
tomit4 2022-06-09 12:59:03 -07:00
parent cd053a412a
commit f3117c81d9
84 changed files with 3210 additions and 0 deletions

17
scripts/remember Executable file
View file

@ -0,0 +1,17 @@
#!/bin/bash
# remember--An easy command line-based reminder pad
rememberfile="$HOME/.remember"
if [ $# -eq 0 ] ; then
# Prompt the user for input and append whatever they write to
# the rememberfile.
echo "Enter note, end with ^D: "
cat - >> $rememberfile
else
# Append any arguments passed to the script on to the .remember file.
echo "$@" >> $rememberfile
fi
exit 0