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