Skip to content

Instantly share code, notes, and snippets.

@T31337
Created August 8, 2024 23:44
Show Gist options
  • Save T31337/9e592053bbfde74fad34ebd364f46bb3 to your computer and use it in GitHub Desktop.
Save T31337/9e592053bbfde74fad34ebd364f46bb3 to your computer and use it in GitHub Desktop.
Some Terminal Escape Memory Bug I Found...
#!/bin/bash
#Terminal Escape 'NotePad' Bug
day=($date +%a)
task="None"
function getDay()
{
if [ $day == "Tue" ]; then
task="Deving"
espeak "Dev Day!"
elif [ $day == "Wed" ]
task="Streaming"
espeak "Stream Day!"
else
task="Nothing"
espeak "Free Day!"
fi
echo -e "Task: $task"
}
#See Vido Of Bug Here: https://www.twitch.tv/videos/2219403657
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment