8 lines
133 B
Plaintext
8 lines
133 B
Plaintext
|
#!/bin/bash
|
||
|
if [ "$1" != "" ]; then
|
||
|
time mono /opt/cryptoworkbench.exe "$1";
|
||
|
else
|
||
|
time mono /opt/cryptoworkbench.exe
|
||
|
fi
|
||
|
read
|