So when I read this article about MSH (Microsoft Command Shell, previously known as MONAD) it made me realise that this advantage for the open source (and the commercial Unix flavours like Solaris) may not be there for much longer.
It appears Microsoft realise this weakness in their server platform's architecture and are bringing out their version. It appears it will be syntax a bit like C (that makes it a bit different from bash), from this code example I have seen:
What is funny, however is how the author of the article says:$var = "This is MSH".Split(" ")
foreach($str in $var)
{
if($str.Equals("MSH"))
{
"Monad"
}
else
{
$str
}
}
Considering that bash is Unix-based, capitalisation matters, so LS is not the same as ls and BASH is not the same as bash, Grep is not the same as grep...
From performing administration on a remote box to searching files using LS piped to Grep, BASH has its many uses.
No comments:
Post a Comment