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.
Hello everyone. I am new to this forum and have never done scripting before (in any language). I am on Redhat 5.3. I wrote a script to locate all files over 1GB in a specific directory and it works greate if there actually happens to be a file over 1 GB. The problem is, if there isn't a file over 1GB then it just seems to report random files that aren't even in the directory I'm telling it to look it. Can someone please tell me what I'm doing wrong?
Here's a copy of the script:
find /sxplive/db -size +1G -name livenxt* -print0 | xargs -0 ls -lSh > /sxplive/rd/tmp/dbfilesize.log
cat /sxplive/rd/tmp/dbfilesize.log | mail -s "Review SXPLIVE DB file sizes" support@domain.com
You don't have "livenxt*" in single quotes, and as such bash will glob the filename and expand the command line to contain everything that matches that pattern, using them as arguments to "find". Put the pattern into single quotes and then the * will end up inside find, rather than being expanded beforehand.
The problem here is that the ls command in the scond part of that script will not get any arguments if no file is found that is larger than 1GB. In that case the default behavior for ls is just to display the files in the current directory. Change the first line to
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.