Manuals


 
Thread Tools Search this Thread
Operating Systems HP-UX Manuals
# 8  
Old 09-04-2008
Quote:
Originally Posted by vbe
N4000 name was renamed RP7400 just like
L classes were renamed to RP5XXX
Or was it the other way round?...

* N4000-36/rp7400: Prelude W
* N4000-44/rp7400: Prelude W 440 etc...
* L2000-54/rp5450
ant:/home/vbe $ model
model
9000/800/L2000-54

Oh i see excellant thanks heaps,you're a legend.
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. SCO

SCO Training manuals

Hi, I have stack of SCO Open server and general SCO training books, materials and guides. Is there anyone out there that might be interested in this stuff? Perhaps it recycle time? :) (6 Replies)
Discussion started by: scocrush
6 Replies

2. HP-UX

HP9000 I70 E35 E55 manuals

I am looking for the service manuals of these servers. Can anyone would like to share please? I know the documentation is in the form of hard copy only. But if someome can share through scan or want to sell, let me know. thanks in advance (4 Replies)
Discussion started by: samurai123
4 Replies

3. UNIX for Dummies Questions & Answers

DGUX manuals

Hi Anyone know where i get DGUX manuals.... Cheers (1 Reply)
Discussion started by: Flipper_Al
1 Replies

4. UNIX for Dummies Questions & Answers

Cobalt Raq3 -- Manuals Needed

Hi I decided to buy a cobalt Raq3 but have no clue on how to set one up. I thought it would be straight forward but its not as simple as it looks. Can anyone provide me with locations of manuals or noobie setup instructions. Any help would be greatly appreciated Thanks:) (2 Replies)
Discussion started by: Demon Lama
2 Replies

5. UNIX for Dummies Questions & Answers

Unix Manuals

Hey, I have a red hat linux server, and am lost in the wilderness. any type of 300000 page boxo someone wrote to help? ia m in need of deperate care (2 Replies)
Discussion started by: g1zm0
2 Replies

6. UNIX for Dummies Questions & Answers

Unix newbie: manuals

Hi to everybody! I'm new italian unix user and, of course, i 've got problems during my "administrative" part. Does anyone know where to get some manuals (.pdf, .doc ...) for the unix commands? Thank in advance! (1 Reply)
Discussion started by: Mauro
1 Replies

7. UNIX for Dummies Questions & Answers

IRIX books, manuals, references...

Does anyone out there know of ANY specific books pertaining to SGI's flavor of Unix - IRIX? I have been in contact with SGI directly and they have not supplied me with any usable reference material or manuals. I realize man pages are a good source for info, but I need to go a little deeper... (6 Replies)
Discussion started by: lozinit
6 Replies
Login or Register to Ask a Question
RENAME(1)						 Perl Programmers Reference Guide						 RENAME(1)

NAME
rename - renames multiple files SYNOPSIS
rename [ -v ] [ -n ] [ -f ] perlexpr [ files ] DESCRIPTION
"rename" renames the filenames supplied according to the rule specified as the first argument. The perlexpr argument is a Perl expression which is expected to modify the $_ string in Perl for at least some of the filenames specified. If a given filename is not modified by the expression, it will not be renamed. If no filenames are given on the command line, filenames will be read via standard input. For example, to rename all files matching "*.bak" to strip the extension, you might say rename 's/.bak$//' *.bak To translate uppercase names to lower, you'd use rename 'y/A-Z/a-z/' * OPTIONS
-v, --verbose Verbose: print names of files successfully renamed. -n, --no-act No Action: show what files would have been renamed. -f, --force Force: overwrite existing files. ENVIRONMENT
No environment variables are used. AUTHOR
Larry Wall SEE ALSO
mv(1), perl(1) DIAGNOSTICS
If you give an invalid Perl expression you'll get a syntax error. BUGS
The original "rename" did not check for the existence of target filenames, so had to be used with care. I hope I've fixed that (Robin Barker). perl v5.12.4 2011-08-10 RENAME(1)