Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
HunterBoy344 authored Jan 26, 2021
1 parent afa2249 commit e3fc70a
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions looping-realtime-drive.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
@echo off
set /p "driveletter=Enter Google Drive drive letter: "
set /p "chatname=Enter chat folder path in quotations: "
for /f %%t in ('cd') do set currentlocation=%%t
MODE 60,20
cd /D %driveletter%:\%chatname%
:loop
for /f %%e in (%currentlocation%\exit.txt) do set exitcounter=%%e
if "%exitcounter%"=="exit" (
exit
)
cls
type chat.txt
timeout 1 >nul
goto loop

0 comments on commit e3fc70a

Please sign in to comment.