github Vaimer9/vsh v0.1.4

latest releases: v0.1.19, v0.1.18, v0.1.17...
2 years ago

Added Multiple Commands:

echo one && echo two

will result in:

one
two

But if the first command fails the second will not execute, i.e

echoo one && echo two

will result in:

No such command as `echoo`

To get around this you can use ;

echo one ; echo two

This will result in:

one
two

But:

echoo one ; echo two

Will result in:

No such command as `echoo`
two

Whats next?:
Customization via .vshrc.json

Don't miss a new vsh release

NewReleases is sending notifications on new releases.