HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: sed command or edit output
Operating System - HP-UX
1825987
Members
3460
Online
109690
Solutions
Forums
Categories
Company
Local Language
back
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
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- 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
03-08-2000 06:06 AM
03-08-2000 06:06 AM
sed command or edit output
I am trying to use the sed command to remove some lines in a text file. The
lines are like the following
(1 row affected)
(68 rows affected)
The number of rows could change, so is there a wildcard option.
Some lines have the following
-----------
----------------
the length varies.
What command would you use?
sed -e 's/? row affected)//' \
-e 's/?? rows affected)//' \
-e 's/??? rows affected)//' \
infile > outfile
This would work, but if at a later date the rows are > 10000 I will have to
fix. Trying not to do this.
Thanks in advance
lines are like the following
(1 row affected)
(68 rows affected)
The number of rows could change, so is there a wildcard option.
Some lines have the following
-----------
----------------
the length varies.
What command would you use?
sed -e 's/? row affected)//' \
-e 's/?? rows affected)//' \
-e 's/??? rows affected)//' \
infile > outfile
This would work, but if at a later date the rows are > 10000 I will have to
fix. Trying not to do this.
Thanks in advance
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2000 06:38 AM
03-08-2000 06:38 AM
Re: sed command or edit output
Answer my own question
Use the following command
sed -e /affected/D -e /----/D infile > outfile
Use the following command
sed -e /affected/D -e /----/D infile > outfile
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2000 08:37 AM
03-08-2000 08:37 AM
Re: sed command or edit output
Prove the next instruction:
grep -v "row affected" file | grep -v "rows affected"
> file_new
grep -v "row affected" file | grep -v "rows affected"
> file_new
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Support
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP