![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| creating a file using Perl | chriss_58 | Shell Programming and Scripting | 1 | 06-03-2008 07:41 AM |
| Creating a file | ravisg | Shell Programming and Scripting | 2 | 05-10-2008 06:15 AM |
| help with creating new log file | john89011 | Shell Programming and Scripting | 0 | 02-29-2008 12:45 PM |
| creating a csv file in awk | Segwar | Shell Programming and Scripting | 6 | 02-29-2008 10:43 AM |
| Creating a csv file based on Existing file | skywayterrace | Shell Programming and Scripting | 3 | 12-02-2007 09:19 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
Creating a txt file
Hi All,
I would like to know if you can set up in part of a script for the script to create a txt file and put some predetermined text into it. #Example make file example.txt #Then it would the lines below into the text file as text. Line 1 Line 2 Line 3 Does anyone have any answers. Jeremy |
|
||||
|
here is the answer!!
touch example.txt
echo Line1 >> example.txt echo Line2 >> example.txt echo Line3>> example.txt |
| Sponsored Links | ||
|
|