whatisthis987
IS-IT--Management
Hi,
== Beginning of name_list.file ===
ALAN*
ALEX?
BEN
== end of name_list.file ==
== Beginninf of Shell script ==
set name_list = name_list.file
foreach mm (`cat ${name_list}`)
printf \" >> output_file
printf $mm >> output_file
printf \" >> output_file
printf " " >> output_file
end
== end of Shell script ==
I'm getting error messages "printf: No match.". I tried adding a backslash before the asterisk and question mark but that didn't help.
Could you please help?
== Beginning of name_list.file ===
ALAN*
ALEX?
BEN
== end of name_list.file ==
== Beginninf of Shell script ==
set name_list = name_list.file
foreach mm (`cat ${name_list}`)
printf \" >> output_file
printf $mm >> output_file
printf \" >> output_file
printf " " >> output_file
end
== end of Shell script ==
I'm getting error messages "printf: No match.". I tried adding a backslash before the asterisk and question mark but that didn't help.
Could you please help?