Batch scripting is a text file containing a series of commands intended to be executed by the command interpreter. Much like a unix / linux shell script, the purpose of a batch script is to sequentially process a series of commands.
Tags | bat | batch
Grep for batch scripts
Most folks that use linux and the CLI are well aware of grep, but most dont know that you can get "grep like" functionality by using FIND in the windows command line.
Here is an example of an nslookup using find
nslookup -a |find "ESTABLISHED"
Comments
Feel free to leave a comment or question