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