Sponsored Content
Top Forums Shell Programming and Scripting Capture first N Bytes from first line in a file Post 302349126 by sharadpisal on Monday 31st of August 2009 07:18:48 AM
Old 08-31-2009
if : input file
of : output file
ibs : tell how many bytes to read at a time, something like block size
count: read those blocks for maximum of this times,

so


# dd if=infile ibs=N count=M of=outfile
Will work if N * M = 48
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Remove first N bytes and last N bytes from a binary file on AIX.

Hi all, Does anybody know or guide me on how to remove the first N bytes and the last N bytes from a binary file? Is there any AWK or SED or any command that I can use to achieve this? Your help is greatly appreciated!! Best Regards, Naveen. (1 Reply)
Discussion started by: naveendronavall
1 Replies

2. Shell Programming and Scripting

80 bytes per line ???

I am creating ASCII file from Oracle procedure into Unix box. I undertstand there is NO CRLF as I am writing it into one complete string .. but need to know what is best way to format the file with 80bytes per line only before handing over to another program. Thanks in advance regards... (14 Replies)
Discussion started by: u263066
14 Replies

3. Shell Programming and Scripting

Error PHP Fatal error: Allowed memory size of 67108864 bytes exhausted(tried to allocate 401 bytes)

While running script I am getting an error like Few lines in data are not being processed. After googling it I came to know that adding such line would give some memory to it ini_set("memory_limit","64M"); my input file size is 1 GB. Is that memory limit is based on RAM we have on... (1 Reply)
Discussion started by: elamurugu
1 Replies

4. Programming

Copying 1024 bytes data in 3-bytes chunk

Hi, If I want to copy a 1024 byte data stream in to the target location in 3-bytes chunk, I guess I can use the following script. dd bs=1024 count=3 if=/src of=/dest But, I would like to know, how to do it via a C program. I have tried this with memcpy(), that did not help. (3 Replies)
Discussion started by: royalibrahim
3 Replies

5. Shell Programming and Scripting

AWK Script to Capture Each Line of File As Variable

Hi All, I'm working on creating a parts database. I currently have access to a manufacturer database in HTML and am working on moving all of the data into a MySQL db. I have created a sed script that strips out the HTML and unnecessary info and separates the script into one line for each field.... (3 Replies)
Discussion started by: dkr
3 Replies

6. Shell Programming and Scripting

awk: Input line Cannot be longer than 3,000 bytes.

Guys, I want to get the high CPU utilization from top. I am using below code : top -d2 >> /home/dba_monitoring/host_top_output.txt echo "Script started `date`" > $runlog usage=`grep "^ *$1" /home/dba_monitoring/host_top_output.txt | awk '{print $12}' | sed 's/%//'` And getting below... (7 Replies)
Discussion started by: wahab
7 Replies

7. UNIX for Dummies Questions & Answers

X bytes of 0, Y bytes of random data, Z bytes of 5, T bytes of 1. ??

Hello guys. I really hope someone will help me with this one.. So, I have to write this script who: - creates a file home/student/vmdisk of 10 mb - formats that file to ext3 - mounts that partition to /mnt/partition - creates a file /mnt/partition/data. In this file, there will... (1 Reply)
Discussion started by: razolo13
1 Replies

8. Shell Programming and Scripting

Shell script - entered input(1-40 bytes) needs to be converted exactly 40 bytes

hello, suppose, entered input is of 1-40 bytes, i need it to be converted to 40 bytes exactly. example: if i have entered my name anywhere between 1-40 i want it to be stored with 40 bytes exactly. enter your name: donald duck (this is of 11 bytes) expected is as below - display 11... (3 Replies)
Discussion started by: shravan.300
3 Replies

9. Shell Programming and Scripting

Get file's first x bytes

is there a better way to do this: head -c 10000k /var/dump.log | head -c 6000k unfortunately, the "-c" option is not available on sun solaris. so i'm looking at "dd". but i dont know how to use it to achieve the same exact goal as the above head command. this needs to work on both solaris... (5 Replies)
Discussion started by: SkySmart
5 Replies

10. Shell Programming and Scripting

How to capture string below a line?

Hi, I need to collect IP address of all servers (more than 300). One way is put it in for loop and run nslookup for that servers list, but there are multiple fields in output. (tty/dev/pts/13): bash: 1011 > nslookup vplssor04 Server: 10.58.115.34 Address: 10.58.115.34#53 Name: ... (7 Replies)
Discussion started by: solaris_1977
7 Replies
IO::Capture(3pm)					User Contributed Perl Documentation					  IO::Capture(3pm)

NAME
"IO::Capture" - Abstract Base Class to build modules to capture output. DESCRIPTION
The "IO::Capture" Module defines an abstract base class that can be used to build modules that capture output being sent on a filehandle such as STDOUT or STDERR. Several modules that come with the distribution do just that. I.e., Capture STDOUT and STDERR. Also see James Keenan's "IO::Cap- ture::Stdout::Extended" on CPAN. See IO::Capture::Overview for a discussion of these modules and examples of how to build a module to sub-class from "IO::Capture" yourself. If after reading the overview, you would like to build a class from "IO::Capture", look here for details on the internals. METHODS
These are the methods defined in the "IO::Capture" Module. This page will be discussing the module from the point of view of someone who wants to build a sub-class of "IO::Capture". Each method defined in the "IO::Capture" Module defines a public method, that then calls one or more private methods. (Names starting with an underscore) This allows you to override methods at a finer level of granularity, re-using as much of the functionality provided in the module as possible. Of these internal methods, three are abstract methods that your will have to override if you want your module to do anything. The three are "_start()", "_retrieve_captured_text()". and "_stop()". Below are the public methods with the private methods that each uses immediately following. new The "new" method creates a new "IO::Capture" object, and returns it to its caller. The object is implemented with a hash. Each key used by "IO::Capture" is named with the class name. I.e., 'IO::Capture::<key_name>'. This is to prevent name clashes with keys added by sub- class authors. Attributes can be set in the object by passing a hash reference as a single argument to new(). my $capture = IO::Capture->new( { Key => 'value' } ); All elements from this hash will be added to the object, and will be available for use by children of IO::Capture. my $key = $self->{'Key'}; The internal methods used are: "_initialize()" "_initialize" is called as soon as the empty object has been blessed. It adds the structure to the object that it will need. The "IO::Capture" module adds the following IO::Capture::messages => [] IO::Capture::line_pointer => 1 IO::Capture::status => 'Ready', # Busy when capturing start The "start" method is responsible for saving the current state of the filehandle and or signal hander, and starting the data capture. Start cannot be called if there is already a capture in progress. The "stop" must be called first. These internal methods are called in this order. "_check_pre_conditions" "_check_pre_conditions" is used to make sure all the preconditions are met before starting a capture. The only precondition checked in "IO::Capture", is to insure the "Ready" flag is "on". I.e., There is not already a capture in progress. If your module needs to make some checks, and you override this method, make sure you call the parent class "_check_pre_conditions" and check the results. sub _check_pre_conditions { my $self = shift; return unless $self->SUPER::_check_pre_conditions; An example of something you might want to check would be, to make sure STDERR is not already tied if you are going to be using "tie" on it. Must return a boolean true for success, or false for failure. If a failure is indicated, an "undef" will be returned to the calling function, and an remaining private methods for "start" will not be run. "_save_current_configuration()" "_save_current_configuration" in "IO::Capture" will save the state of "STDERR", "STDOUT", and $SIG{__WARN__}. They are saved in the hash keys 'IO::Capture::stderr_save', 'IO::Capture::stdout_save', and 'IO::Capture::handler_save'. # Save WARN handler $self->{'IO::Capture::handler_save'} = $SIG{__WARN__}; # Dup stdout open STDOUT_SAVE, ">&STDOUT"; # Save ref to dup $self->{'IO::Capture::stdout_save'} = *STDOUT_SAVE; # Dup stderr open STDERR_SAVE, ">&STDOUT"; # Save ref to dup $self->{'IO::Capture::stderr_save'} = *STDERR_SAVE; These saved values can be used in the "_stop" method to restore the original value to any you changed. $SIG{__WARN__} = $self->{'IO::Capture::handler_save'}; STDOUT = $self->{'IO::Capture::stdout_save'}; STDERR = $self->{'IO::Capture::stderr_save'}; Must return a boolean true for success, or false for failure. If a failure is indicated, an "undef" will be returned to the calling function. "_start" Start the capture! This is only an abstract method in "IO::Capture". It will print a warning if called. Which should not happen, as the author of the sub-class will always be sure to override it with her/his own. :-) This is the first of the three you need to define. You will likely use tie here. The included module "IO::Capture:STDx" (see IO::Cap- ture::STDx or other module of your own or from CPAN. You will read it from the tied module and put it into the object in "_retrieve_captured_text". See _retrieve_captured_text Must return a boolean true for success, or false for failure. If a failure is indicated, an "undef" will be returned to the calling function. stop Stop capturing and return any filehandles and interrupt handlers that were changed, to their pre-start state. This must be called before calling "read()". If you are looking for a way to interact with the process on the other side of the filehandle, take a look at the "Other Modules on CPAN". Must return a boolean true for success, or false for failure. If a failure is indicated, an "undef" will be returned to the calling func- tion. "_retrieve_captured_text()" Copy any text captured into the object here. For example, The modules in this package tie the filehandle to the (included) "IO::Cap- ture::STDx" to collect the text. The data needs to be read out of the tied object before the filehandle is untied, so that is done here. In short, if you need to do any work before "_stop" is called, do it here. The "_retrieve_capture_text" in this base class just returns true without doing anything. Must return a boolean true for success, or false for failure. If a failure is indicated, an "undef" will be returned to the calling function. The "_stop" internal method will be called first. "_stop" Do what needs to be done to put things back. Such as untie filehandles and put interrupt handlers back to what they were. The default "_stop" method defined in <IO::Capture> won't do anything, so you should. Must return a boolean true for success, or false for failure. If a failure is indicated, an "undef" will be returned to the calling function. read The "read" method is responsible for returning the data captured in the object. These internal methods will be run, in this order. "_read()" The internal method used to return the captured text. If called in list context, an array will be returned. (Could be a lot if you captured a lot) or called in scalar context, the line pointed to by the line_pointer will be returned and the line_pointer incremented. Other Modules on CPAN If this module is not exactly what you were looking for, take a look at these. Maybe one of them will fit the bill. o IO::Filter - Generic input/output filters for Perl IO handles o Expect - Expect for Perl o Tie::Syslog - Tie a filehandle to Syslog. If you Tie STDERR, then all STDERR errors are automatically caught, or you can debug by Carp'ing to STDERR, etc. (Good for CGI error logging.) o FileHandle::Rollback - FileHandle with commit and rollback See Also IO::Capture::Overview IO::Capture::Stdout IO::Capture::Stderr AUTHORS
Mark Reynolds reynolds<at>sgi.com Jon Morgan jmorgan<at>sgi.com MAINTAINED
Maintained by Mark Reynolds. reynolds<at>sgi.com COPYRIGHT
Copyright (c) 2003 Mark Reynolds and Jon Morgan Copyright (c) 2004-2005 Mark Reynolds All Rights Reserved. This module is free soft- ware. It may be used, redistributed and/or modified under the same terms as Perl itself. perl v5.8.8 2007-07-30 IO::Capture(3pm)
All times are GMT -4. The time now is 08:13 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy