You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
303 B
17 lines
303 B
{
|
|
if ($0 ~ /^File /)
|
|
{
|
|
if (NF == 2)
|
|
name = $2
|
|
else if ($0 ~ /no version stamp/)
|
|
{
|
|
name = $2
|
|
printf "%-13s ?\n",name
|
|
}
|
|
}
|
|
else if ($1 == "FileVersion" && NF > 2)
|
|
{
|
|
ver = $NF
|
|
printf "%-13s %s\n",name,ver
|
|
}
|
|
}
|