This commit is contained in:
DarkFeather 2016-11-09 22:30:08 -06:00
parent 78e3ffe82f
commit d2b8b98f08
2 changed files with 2 additions and 1 deletions

View File

@ -1,7 +1,7 @@
TMUXSetting != grep -c "cryptoworkbench" /etc/tmux.conf
compile: clean /usr/bin/mcs analysis.csharp substitution.csharp caesarian.csharp cryptoworkbench.csharp
/usr/bin/mcs -out:cryptoworkbench.exe *.csharp
/usr/bin/mcs -out:cryptoworkbench.exe *.csharp 2>&1 | grep -v 'is assigned but its value is never used'
test: /usr/bin/mono compile
/usr/bin/mono cryptoworkbench.exe ./sample.txt

View File

@ -274,6 +274,7 @@ namespace AniNIX.Crypto {
try {
workSpace = SwitchCases[command].RunCommand(this.workSpace,this.inputText,line);
} catch (Exception e) {
e.ToString();
Console.Error.WriteLine("Command not found.");
}
break;