I like the way that one can do simple math from the PowerShell command line, example;
Using the following alias;
...I can now do;
...from the TCC Command line.
Again, this is only for simple math, not for log(), fact(), MOD, etc.
When I enter an UNKNOWN_CMD, for example;
...which is not pretty...
Read more
Code:
PS E:\utils> 52*4
208
Using the following alias;
Code:
e:\utils>alias unknown_cmd
echo %@eval[%@filter[0123456789.*+-/\,"%$"]]
...I can now do;
Code:
e:\utils>52*4
208
Again, this is only for simple math, not for log(), fact(), MOD, etc.
When I enter an UNKNOWN_CMD, for example;
Code:
e:\utils>dze
TCC: No expression ""
...which is not pretty...
Read more