Mailinglist Archive: opensuse (2372 mails)
| < Previous | Next > |
Re: [SLE] How to append text at the beginnig of a file?
- From: Terry Eck <eck@xxxxxxxxxxxx>
- Date: Thu, 25 Jan 2001 09:20:25 -0600
- Message-id: <3A704439.E0110879@xxxxxxxxxxxx>
cat header_file >temp_file
cat plain_text >>temp_file
mv temp_file plain_text
Noting fancy but it should work.
Regards,
Terry
Martin Mielke wrote:
> Dear all,
>
> how can I append a text header to a plain-text file (source code) without
> deleting what's been already there?
cat plain_text >>temp_file
mv temp_file plain_text
Noting fancy but it should work.
Regards,
Terry
Martin Mielke wrote:
> Dear all,
>
> how can I append a text header to a plain-text file (source code) without
> deleting what's been already there?
| < Previous | Next > |