8 lines
157 B
Plaintext
8 lines
157 B
Plaintext
|
#!/bin/bash
|
||
|
if [ -n "$1" ]; then
|
||
|
time mono /opt/aninix/CryptoWorkbench/shell.exe "$1";
|
||
|
else
|
||
|
time mono /opt/aninix/CryptoWorkbench/shell.exe;
|
||
|
fi
|
||
|
read
|