How to find the head cleaning history on HP HP MSL4048 1 LT0-4 Ultrium 1840?


 
Thread Tools Search this Thread
Operating Systems HP-UX How to find the head cleaning history on HP HP MSL4048 1 LT0-4 Ultrium 1840?
# 1  
Old 07-31-2014
DB How to find the head cleaning history on HP HP MSL4048 1 LT0-4 Ultrium 1840?

Please guide me how to get the head cleaning history on HP HP MSL4048 1 LT0-4 Ultrium 1840.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

How to find out and monitor IO spikes history in Linux?

hello all i have application which according to AWS monitoring is reaching to high spikes of IO at random time . and causing the server to crash and restart . my question is how can i find out what cause the spike and if i can't with the native linux tools what free open source minimon... (6 Replies)
Discussion started by: umen
6 Replies

2. AIX

Filesets for IBM ultrium lto 5 (SAS)

i connect an ibm ultrium lto 5 (sas) to an 8204-e8a (v6.1 TL5 SP 1) then i do an cfgmgr and get message about missing filesets devices.pciex.1410ca03 devices.pciex.pciexclass.00107 devices.pciex.00107200 devices.pciex.pciex100.72.3 and a few others i try to find the filesets on the two OS... (1 Reply)
Discussion started by: AIXBlueCat
1 Replies

3. Shell Programming and Scripting

cleaning up files using find...

I am trying to cleanup a directory with around 4000 files, and using the below command to delete all .gz files older than 60 days, I am having the same issue of arguments being too long. is there a way i can use the same command to do what I intend to do. find /opt/et/logs/Archive/*.log.*.gz... (4 Replies)
Discussion started by: Shellslave
4 Replies

4. Homework & Coursework Questions

Unix find and head command help

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: I've been stuck on this problem for 2 days now What command would you enter to list the first lines of all text... (11 Replies)
Discussion started by: partieboi37
11 Replies

5. UNIX for Dummies Questions & Answers

Unable to find the history file

Hi friends, I am unable to find the .sh_history file on my PC. This files contains the log of all commands typed by the users. I searched it also , but no results. Please help me :(, where to find it . Or is there anything else to do to set the history file. (6 Replies)
Discussion started by: paras.oriental
6 Replies

6. Shell Programming and Scripting

To find the time stamps history of the files within the sub-folders

Hi - Can anyone help me to get the shell script for the below scenario I need to find out the time stamps history for the files residing within the subfolders. Ex.. Let say I got directory structure like /home/project1/ -- Fixed directory Now within the project there are many... (1 Reply)
Discussion started by: pankaj80
1 Replies

7. UNIX for Dummies Questions & Answers

find and head -1

i have lots of files in /law/prod and /law/dev, such as AP20PD, AP20WS, AP20.scr, AP20.rpt if i am in /law DIR find . -name AP20PD, found in /law/prod and /law/dev i want to head -1 AP20PD from both location and >> /tmp/test.log can i use find and head in one line ? ----------... (1 Reply)
Discussion started by: tjmannonline
1 Replies

8. AIX

Ultrium LTO3 Tape Drive for pSeries p570

I have 2 servers in my office which are p570 and p550. Both run under AIX 5300-07. And I only have 1 x SCSI Ultrium LTO3 Tape Drive. For syncronization purposes, I always backup p570 server's database and restore into p550 server. And due to the frequent process of syncronization, I require to... (1 Reply)
Discussion started by: kwliew999
1 Replies

9. UNIX for Advanced & Expert Users

bash history with ctr+R, How to get find next match?

ctr+R is used to search bash history reversely, How to get next match? just like N in vi search. (1 Reply)
Discussion started by: honglus
1 Replies

10. AIX

Ultrium Tape

Hello world I would to know the age of utrium tape ? How many time i can use one tape ???? THank you all (2 Replies)
Discussion started by: mktahar
2 Replies
Login or Register to Ask a Question
TIDY_GET_HEAD(3)							 1							  TIDY_GET_HEAD(3)

tidy::head - Returns atidyNodeobject starting from the <head> tag of the tidy parse tree

       Object oriented style

SYNOPSIS
tidyNode tidy::head (void ) DESCRIPTION
Procedural style tidyNode tidy_get_head (tidy $object) Returns a tidyNode object starting from the <head> tag of the tidy parse tree. PARAMETERS
o $object - The Tidy object. RETURN VALUES
Returns the tidyNode object. EXAMPLES
Example #1 tidy_get_head(3) example <?php $html = ' <html> <head> <title>test</title> </head> <body> <p>paragraph</p> </body> </html>'; $tidy = tidy_parse_string($html); $head = $tidy->head(); echo $head->value; ?> The above example will output: <head> <title>test</title> </head> NOTES
Note This function is only available with Zend Engine 2 (PHP >= 5.0.0). SEE ALSO
tidy.body(3), tidy.html(3). PHP Documentation Group TIDY_GET_HEAD(3)