Sponsored Content
Top Forums Shell Programming and Scripting Complete Newbie requiring help Post 302356669 by TonyFullerMalv on Saturday 26th of September 2009 05:28:26 PM
Old 09-26-2009
If each section ended with something predictable (e.g. the Solaris section ends with EndSolaris) then you could use:
Code:
awk '/Solaris/,/EndSolaris/' inputfile > solarisoutputfile1

To extract the Solaris section.

Once the Solaris section is in its own file you could then use:
Code:
sed 's/rubbish/good/' solarisoutputfile1 > solarisoutputfile2

To replace "rubbish" with "good".

If the "rubbish" you want to replace is always at the beginning of the line and there are mentions of "rubbish" that are not at the beginning of the line you do not want to replace you could use:
Code:
sed 's/^rubbish/good/' solarisoutputfile1 > solarisoutputfile2

Where the "^" (caret) denotes start of line.

If on the other hand you do want to replace absolutely all mentions of "rubbish" with "good" then you would use:
Code:
sed 's/rubbish/good/g' solarisoutputfile1 > solarisoutputfile2

Where the g denotes global replace, without the g only the first mention of "rubbish" in each line would get replaced.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Complete Newbie Question

I am in a test environment where i need to test several versions of UNIX, such as linux, solaris, SCO (ODT and Unixware). What i would like to know is there a universal way to work with the contents of a floppy diskette? I know some give you dos-like commands, but am looking for a way to access and... (1 Reply)
Discussion started by: Dpinion
1 Replies

2. UNIX for Dummies Questions & Answers

complete newbie

ok so i am trying redhat linux and i create a partiton and install it no worries then i start and i cant access any of my other drives i can mount cd roms and floppies so i am logged in as root what i want to do is mount the following drives drive 1 ide partition 2 drive 2 to 5 seen... (2 Replies)
Discussion started by: davidjk
2 Replies

3. UNIX for Dummies Questions & Answers

A complete Unix Newbie

I would like to know if I should install unix over a windows 98. I want to use a home computer to host websites right now, but I know how much Windows likes resources ;) So, my question is... Should I get a Unix OS? If no, then do not read more and just reply :) If yes, then, which one? How... (2 Replies)
Discussion started by: Afinita
2 Replies

4. UNIX for Dummies Questions & Answers

Qmail requiring SMTP auth

Has anyone gotten netqmail patched with qmail-smtp-auth to not just allow, but require ESMTP authentication? I'm in the processes of setting up a port 587 (submission) server for my remote users to be able to send mail through while they're on the road, but I don't want it to usable without... (0 Replies)
Discussion started by: vertigo23
0 Replies

5. UNIX for Dummies Questions & Answers

BASH complete-filename & menu-complete together

Hi, Does anyone know how to make BASH provide a list of possible completions on the first tab, and then start cycling through the possibilites on the next tab? Right now this is what I have in my .bashrc: bind "set show-all-if-ambiguous on" bind \\C-o:menu-complete This allows... (0 Replies)
Discussion started by: Mithu
0 Replies

6. Shell Programming and Scripting

BASH: Any Way to Get User Input Without Requiring Them to Hit the Enter Key?

I'm working on making a menu system on an HP-UX box with Bash on it. The old menu system presents the users with a standard text menu with numbers to make selections. I'm re-working the system and I would like to provide something more akin to iterative search in Emacs. I have a list of 28... (2 Replies)
Discussion started by: deckard
2 Replies

7. Hardware

Wireless works, then dies requiring a reboot

Hello, I am having a problem with my wireless. Seems to be a relatively new problem over the past few weeks. I have an intel wireless. It seems like it can be fine for days, then in will quite working to the point a reboot is necessary. It may happen once and be fine, or may happen several times... (0 Replies)
Discussion started by: Narnie
0 Replies

8. UNIX for Dummies Questions & Answers

Complete Newbie looking for advice

Hi everyone! I've been browsing the forum for a couple of days, and thought it was about time to chime in. I'm having a pre-mid-life mid-life crisis (I think), and am seriously debating a career shift. I currently use a bash shell in my day to day work (very basic file management, FTP, backups,... (8 Replies)
Discussion started by: Bravestarr
8 Replies

9. Programming

Unable to use libcurl to access a site requiring client authentication

I’m using the below snipped for setting the certificate and key for client authentication. curl_easy_setopt(curl,CURLOPT_SSLCERT,"clientCert.pem"); curl_easy_setopt(curl,CURLOPT_SSLCERTPASSWD,"changeit"); curl_easy_setopt(curl,CURLOPT_SSLCERTTYPE,"PEM"); ... (2 Replies)
Discussion started by: old_as_a_fossil
2 Replies

10. Shell Programming and Scripting

Creating a script requiring a pause for user input

Hi I'm trying to create a basic script that pauses for user input to verify a file name before generating the output. I have numerous SSL certificate files which I am trying to determine the expiry date so what I'm trying to do is write a script so that is pauses to request the name of the .pem... (9 Replies)
Discussion started by: Buddyluv
9 Replies
Publican::CreateBook(3pm)				User Contributed Perl Documentation				 Publican::CreateBook(3pm)

NAME
Publican::CreateBook - A module for generating documentation boilerplate VERSION
This document describes Publican::CreateBook version $VERSION SYNOPSIS
use Publican::CreateBook; my $creator = Publican::CreateBook->new({name => 'foo'}); $creator->create(); DESCRIPTION
Creates a new Book, Article or Set for use with the publican package INTERFACE
new Create a Publican object set. Parameters: docname Book Name (Required) version Product Version (default: 0.1) edition Edition (default: 0) product Product Name (default: Documentation) brand Brand (default: common) xml_lang Source Language (default: en-US) type Book|Set|Article (default: Book) create Try embedding templates in perl to avoid licensing rubbish DIAGNOSTICS
"unknown args %s" All subs with named parameters will return this error when unexpected named arguments are provided. "%s is a required argument" Any sub with a mandatory parameter will return this error if the parameter is undef. "directory %s exists" When creating a book a directory is created named publican-<book_name>. If a directory with that name is in the current directory the creation will fail. CONFIGURATION AND ENVIRONMENT
Publican::CreateBook requires no configuration files or environment variables. DEPENDENCIES
Carp Config::Simple XML::TreeBuilder File::Path DateTime Term::ANSIColor Publican INCOMPATIBILITIES
None reported. BUGS AND LIMITATIONS
No bugs have been reported. Please report any bugs or feature requests to "publican-list@redhat.com", or through the web interface at <https://bugzilla.redhat.com/bugzilla/enter_bug.cgi?product=Publican&amp;component=publican>. AUTHOR
Jeff Fearn "<jfearn@redhat.com>" perl v5.14.2 2012-06-18 Publican::CreateBook(3pm)
All times are GMT -4. The time now is 07:44 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy