- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: how to add one line at the top of a file
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2002 02:49 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2002 03:02 PM
08-08-2002 03:02 PM
Re: how to add one line at the top of a file
If it is just within vi, you can do a
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2002 03:03 PM
08-08-2002 03:03 PM
Re: how to add one line at the top of a file
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2002 04:23 PM
08-08-2002 04:23 PM
Re: how to add one line at the top of a file
=======================
#more addtotop
echo $1 >$$.tmp
cat $2 >>$$.tmp
cat $$.tmp >$2
rm $$.tmp
=======================
On how to use:
#addtotop "The string you want to add to the first line." FILENAME
Good luck!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2002 05:03 PM
08-08-2002 05:03 PM
Re: how to add one line at the top of a file
cat myfile | sed '1 s/^/\controlvcontrolj/'
it will appear on the screen as this:
cat myfile | sed '1 s/^/\^J/'
HTH
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2002 05:32 PM
08-08-2002 05:32 PM
Re: how to add one line at the top of a file
Here is what I want to achieve.
I have a few lines coming from a output:
line1
line2
line3
and I want to add these lines
on the top of a file, myfile.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2002 06:21 PM
08-08-2002 06:21 PM
Re: how to add one line at the top of a file
e.g.
# cat /tmp/wrk1
line1
line2
line3
# cat /tmp/wrk2
file1
file2
file3
# head -n 3 /tmp/wrk1 >/tmp/wrk3 ; cat /tmp/wrk2 >>/tmp/wrk3
# cat /tmp/wrk3
line1
line2
line3
file1
file2
file3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2002 08:50 PM
08-08-2002 08:50 PM
Re: how to add one line at the top of a file
If u get line1
line2
line3 ina file say test then you can jsut
do
cat test >file
and then
cat myfile >> file
Manoj Srivastava
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2002 12:23 AM
08-09-2002 12:23 AM
Re: how to add one line at the top of a file
So all solutions include unfortunately a complete and inefficient copy operation. See suggestions above and pick the one you like.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2002 12:49 AM