6 lines
61 B
Bash
6 lines
61 B
Bash
|
#!/bin/sh
|
||
|
while [ 1 ]; do
|
||
|
$1 && break
|
||
|
done
|
||
|
sudo touch $2
|