make files more clear and avoid git pull conflicts

This commit is contained in:
Nayan
2025-08-25 22:49:55 -04:00
parent c6123df4df
commit d379076cd7
5 changed files with 17 additions and 15 deletions

10
testscript.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
while true; do
read -n 1 -p "" input
if [[ $input == "q" ]]; then
break
fi
echo "hello"
sleep 3
done