Description: awk by Cao Siqin, 2007.7.17
awk <Format String>
Format string:
It may contain following symbols:
$x: parameter x will be used here
\t = \x07
\n = \x0A
Example:
script.txt:
C:\WINDOWS\a logfile .log
C:\WINDOWS\b txtfile .txt
input this command in a console window:
awk notepad.exe $1 $3 < script.txt
then following commands will be executed:
notepad C:\WINDOWS\a.log
notepad C:\WINDOWS\b.txt
File list (Check if you may need any files):