7 lines
66 B
Bash
7 lines
66 B
Bash
#!/bin/bash
|
|
|
|
SECONDS=0
|
|
while [[ $SECONDS -lt $1 ]]; do
|
|
:
|
|
done
|