Feature & Tips

ATN Helpers :

Below is a sample "notes.bat"

Batt_Stat > active_notes.txt

echo. >> active_notes.txt

echo Today's Gold Price >> active_notes.txt

Get_Url http://kolkata.indiagoldrate.com >x1.txt

Extract_Text < x1.txt /from:"10 Grams" /len:50 > x2.txt

Extract_Text < x2.txt /from:"rs." /len:12 >> active_notes.txt

echo. >> active_notes.txt

echo. >> active_notes.txt

echo Latest files in network >> active_notes.txt

dir e:\tempe\*.zi  /b /od > x1.txt

Extract_Text < x1.txt /last:3 >> active_notes.txt

Below is a zip files of small exe, as used in above sample batch code, for specific task using text in console mode.

All programs are to be run in command window (CMD) i.e. console mode. All programs give syntax and examples when run with /? parameter.

Get_Url  /?

Extract_Text  /?

Batt_Stat  /?

These programs are given here as helping tools and do not come with any warranty. You use them at your own risk. You are advised to use your own programs as helper tools instead. You can check http://gnuwin32.sourceforge.net/ for many linux like small console tools for windows.