Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to tar files only with uppercase

Status
Not open for further replies.

eb222

MIS
Mar 12, 2007
11
NL
How do I tar files only with uppercase also tar files only with lowercase

I wanted to keep them separate.

i.e

ls -l *

XXP_ZYL_INTERFACE004.zip
XXP_ZYL_INTERFACE005.zip
XXP_ZYL_INTERFACE006.zip
XXP_ZYL_INTERFACE007.zip
XXP_ZYL_INTERFACE008.zip
xxe_cnv44.zip
xxe_cnv44_1.zip
xxe_cnv44_2.zip
xxe_cnv44_3.zip
xxe_cnv45_1.zip
xxe_cnv45_2.zip
xxe_cnv45_3.zip
 
A starting point:
ls [A-Z]*
ls [a-z]*

Hope This Helps, PH.
FAQ219-2884
FAQ181-2886
 
hi but what would be the full command?

thanks in advance but im still new at this.

 
tar cf filename.tar files to add ... should do it; combined with the information PHV has given you, you should hopefully be able to figure it out.

Annihilannic.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top