Skip to content

Commit

Permalink
Fixed broken mk-wakemaboi script
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Schneider committed Jan 17, 2023
1 parent 534b77f commit 850c812
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mk-wakemaboi
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ sleep 1; echo -n "."; sleep 1; echo -n "."; sleep 1; echo "."; sleep 1;
echo "All systems ready."
sleep 2;
echo "Launching magic packet."
for i in \$(seq 1 100); do
for (( j=1; j<=$i; j++ )); do
for (( i=1; i<=100; i++ )); do
for (( j=1; j<=\$i; j++ )); do
echo -n " "
done
sleep 0.05
Expand Down

0 comments on commit 850c812

Please sign in to comment.