Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
edit:
You also need to be specific, all lower case and not lower case are not exclusive. There are many occasions (not lower case) AND (not upper case).
edit:
You also need to be specific, all lower case and not lower case are not exclusive. There are many occasions (not lower case) AND (not upper case).
Hey -
Well I have a image folder and in that folder are a bunch of *.gif images.
I want to verify filenames are lowercase, for example 'main.gif' and not 'Main.gif' / 'MAIN.gif' / 'maIN.gof' / etc.
But what you gave me seems to give help too =]
Thanks for your help
Last edited by gqchynaboy; 02-05-2010 at 11:28 PM.
How would I do it for a .HTML file itself now? For example the HTML contains img src="images/lockup.gif" I want to verify all other images are 'some_pretty_pic.gif' and not 'Some_Pretty_Pic.gif' and if it does contain uppercase, output it to the screeen.
P.S. My previous post was incorrect. Should have been 'exclusive or" instead of "exclusive"
Having _1234.gif is okay to have in a fielname and
grep -E 'img src=".*[A-Z].*\.[Gg][Ii][Ff]"' *html
seemed to do it's job. Now only thing is that it's hard to read, I would like to only see maybe 'images/02_140_A9_Reg_EM_PRO_r2_08.gif' and not the whole line of HTML code. I assume I need to use the sed command and some how parse it out?
Now only thing is that it's hard to read, I would like to only see maybe 'images/02_140_A9_Reg_EM_PRO_r2_08.gif' and not the whole line of HTML code. I assume I need to use the sed command and some how parse it out?
I actually just noticed that sometimes I need to upload the images to a FTP server and when this happens their are uppercase letters in the file path, so it's spitting everything out. =[
I actually just noticed that sometimes I need to upload the images to a FTP server and when this happens their are uppercase letters in the file path, so it's spitting everything out. =[
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.