![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| compress Directory | deep_kol | Shell Programming and Scripting | 9 | 11-29-2007 08:12 PM |
| AIX 4.3.3 / Compress Problem | Peter_Brown | UNIX for Advanced & Expert Users | 0 | 02-15-2007 01:13 AM |
| tar and compress | muru | UNIX for Advanced & Expert Users | 4 | 07-31-2006 05:23 PM |
| Copy and compress | here2learn | UNIX for Dummies Questions & Answers | 4 | 11-30-2005 05:29 AM |
| How to Compress log files? | redlotus72 | UNIX for Dummies Questions & Answers | 1 | 02-23-2005 02:07 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
|||
|
mv and compress on the fly
I want to move and compress a big export file.
Like mv file_exp /filesystem/file_exp |compress The file system is too small to compress and move with 2 steps. What is the best command for me. I'm running solaris. |
| Forum Sponsor | ||
|
|
|
|||
|
compress -c filename > /directory/...filename.Z
rm filename if you are creating the compressed file on the same filesystem, you still will not have enough room. Just as you don't if you try a single step compress. Other alternatives are pack, gzip, and zip. |
|||
| Google The UNIX and Linux Forums |