Jun 6, 2007 #1 denisl Technical User Jun 18, 2001 36 US I want to send a bunch of line to an output file - my script is creating a configuration file. I want to do something like this but not sure how.. Code: outputfile.config< text of file lines of configs yada yada yada >>EOF
I want to send a bunch of line to an output file - my script is creating a configuration file. I want to do something like this but not sure how.. Code: outputfile.config< text of file lines of configs yada yada yada >>EOF
Jun 6, 2007 #2 PHV MIS Nov 8, 2002 53,708 FR Why not simply something like this ? echo "\ text of file lines of configs yada yada yada" > outputfile.config For another way, in your shell man page have a look at here-document Hope This Helps, PH. FAQ219-2884 FAQ181-2886 Upvote 0 Downvote
Why not simply something like this ? echo "\ text of file lines of configs yada yada yada" > outputfile.config For another way, in your shell man page have a look at here-document Hope This Helps, PH. FAQ219-2884 FAQ181-2886
Jun 6, 2007 Thread starter #3 denisl Technical User Jun 18, 2001 36 US Okay - learn something new everyday... ugh! Thanks!!!! Upvote 0 Downvote