Sponsored Content
Top Forums Shell Programming and Scripting How to perform a hexdump using dd from start point to end point? Post 302620377 by Scrutinizer on Sunday 8th of April 2012 03:32:03 AM
Old 04-08-2012
Why not:
Code:
hexdump -C -s 512 -n 512 binfile

 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Fibre connection Point to Point SUN

Anyone know of a guide or instructions for Solaris I got to configure a SBUS HBA to talk to a tape robot. I have done this on a switch but not point to point. just going HBA >>>>> TAPE Fibre simple two nodes Kie (6 Replies)
Discussion started by: kie
6 Replies

2. Shell Programming and Scripting

Set start point in script

Does anyone know of a way to set up some sort of marker in a shell script, from which the script can be restarted.. e.g. MARKER1 check env variable MAX_RETRY if var not set then while true do check var if set go to MARKER1 ... (2 Replies)
Discussion started by: handak9
2 Replies

3. Shell Programming and Scripting

Please point the error

Hi i want the output of the following code as follows: colname typename NOT NULL default current timestamp But there seems to be some problem . Kindly correct that COLNAME="colname" typename="typename" DEFAULT="current timestamp" echo "$COLNAME $TYPENAME NOT NULL... (1 Reply)
Discussion started by: skyineyes
1 Replies

4. Shell Programming and Scripting

Need to start a script from the point where it failed.

Hi Guys, I have requirement where if the script fails at a particular point, then the script should run from that particular point itslf.. could anyone help me out from this.. Thanks (5 Replies)
Discussion started by: mac4rfree
5 Replies

5. UNIX for Dummies Questions & Answers

deleting word from this point to end of file in VI

Hi All i need to delete a recurring word from point "n" till end of the file. there are other words in this file so i cannot use `dG`, can anyone help me out? Kind regards Brian (4 Replies)
Discussion started by: brian112
4 Replies

6. Shell Programming and Scripting

Grepping from a point in a file to the end of the file

does any one know how to turn the equivalent of this command: awk '/2011 John Doe 8344/,0' /tmp/ops.log | egrep -c "received request" to something that would use egrep instead of awk? What the awk command does is, it searches the ops.log file for "2011 John Doe 8344". When it finds it,... (4 Replies)
Discussion started by: SkySmart
4 Replies

7. Shell Programming and Scripting

deleting the part of the file(overwrite) using start and end point

here is the contents of bigfile.sql CREATE TABLE `Table11` ( `id` int(11) NOT NULL , `entityName` enum('Lines','EndUsers') COLLATE utf8_unicode_ci NOT NULL, `parentAllianceMigrationProjectId` varchar(255) NOT NULL ) ENGINE=InnoDB AUTO_INCREMENT=2000 DEFAULT CHARSET=utf8... (30 Replies)
Discussion started by: vivek d r
30 Replies

8. Shell Programming and Scripting

Check for decimal point and add it at the end if its not there using awk/perl

I have test.dat file with values given below: 20150202,abc,,,,3625.300000,,,,,-5,,,,,,,,,,,,,,,,,,,,,, 20150202,def,,,,32.585,,,,,0,,,,,,,,,,,,,,,,,,,,,, 20150202,xyz,,,,12,,,,,0.004167,,,,,,,,,,,,,,,,,,,,,, My expected output is shown below: ... (1 Reply)
Discussion started by: nvk_vinoth
1 Replies

9. Shell Programming and Scripting

Read from last point

Hi again, first thanks for all your suggestions. This forum it is very useful. I have a question. Is it possible to read from the last line a file was closed. For example, imagine that i've got a file with a LOT of timestamps : 1467387616.868717770 1467387616.874189609... (1 Reply)
Discussion started by: Board27
1 Replies

10. UNIX for Beginners Questions & Answers

How to create a new mount point with 600GB and add 350 GBexisting mount point? IN AIX

How to create a new mount point with 600GB and add 350 GBexisting mount point Best if there step that i can follow or execute before i mount or add diskspace IN AIX Thanks (2 Replies)
Discussion started by: Thilagarajan
2 Replies
plot(5) 							File Formats Manual							   plot(5)

Name
       plot - graphics interface

Description
       Files in this format are produced by the routines described in and are interpreted for various devices by commands described in

       A  graphics  file  is a stream of plotting instructions.  Each instruction consists of an ASCII letter, usually followed by bytes of binary
       information, executed in order.	A point is designated by 4 bytes representing the x and y values and each value is a signed integer.   The
       last designated point in an or instruction becomes the current point for the next instruction.

       In the following descriptions, the name of the corresponding routine in is enclosed in parenthesis:

	  a (arc)     The  first  4 bytes are the center, the next 4 provide the starting point, and the last 4 bytes designate the end point of a
		      circular arc.  The least significant coordinate of the end point is used only to determine the quadrant.	The arc  is  drawn
		      counter-clockwise.

	  c (circle)  The first 4 bytes provide the center of the circle and the next 2 bytes designate the radius.

	  e (erase)   Start another frame of output.

	  f (linemod) Take  the  following  string, up to a new line, as the style for drawing further lines.  The styles are dotted, solid, long-
		      dashed, shortdashed, and dotdashed.  This is only effective in the following plots: 4014, ver, lvp16, and hp7475a.

	  l (line)    Draw a line from the point designated by the next 4 bytes to the point provided by the following 4 bytes.

	  m (move)    The next 4 bytes provide a new current point.

	  n (cont)    Draw a line from the current point to the point designated by the next 4 bytes. For further information, see

	  p (point)   Plot the point provided by the next 4 bytes.

	  s (space)   The next 4 bytes give the lower left corner of the plotting area.  The following 4 bytes give the upper right  corner.   The
		      plot is magnified or reduced to fit the device as closely as possible.

		      Space  settings  that  fill the plotting area with unity scaling are listed below for devices supported by the filters of In
		      each of the following cases, the plotting area is assumed square; points outside the square can be displayed on devices that
		      have areas which are not square:

			 4014	   space(0, 0, 3120, 3120);
			 ver	   space(0, 0, 2048, 2048);
			 300, 300s space(0, 0, 4096, 4096);
			 450	   space(0, 0, 4096, 4096);
			 aed	   space(0, 0, 511, 482)
			 bitgraph  space(0, 0, 768, 1024)
			 dumb	   space(0, 0, 132, 90)
			 gigi	   space(0, 0, 767, 479)
			 grn	   space(0, 0, 512, 512)
			 hp7221    space(0, 0, 1800, 1800)
			 lvp16	   space(0, 0, 10365, 7962)  (Paper Size: MET A)
				   space(0, 0, 16640, 10365) (Paper Size: MET B)
				   space(0, 0, 11040, 7721)  (Paper Size: US A4)
				   space(0, 0, 16150, 11040) (Paper Size: US A3)
				   space(0, 0, 7721, 7721)   (Default)
			 hp7475a   Same as for lvp16.

	  t (label)   Place  the first character of the following ASCII string on the current point.  This string is terminated by a newline char-
		      acter.

See Also
       graph(1g), plot(1g), plot(3x)

																	   plot(5)
All times are GMT -4. The time now is 06:22 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy