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.
xargs is an utility to build and execute commands from standard input (see man xargs for details). Two notes: the -print0 option of find, and the -0 option of xargs, ensure the filenames are taken as they are (even if they contain blank spaces). These options simply print/get filenames followed by a null character, instead of newline). Also I deliberately put an "echo rm" command after xargs to let you test before actually removing anything. When you are sure of the results, take out the echo and the trick is done.
I think you get that message when find doesn't find any archive that meets the condition. By adding -f you may get rid of that message.
-f option is to force an action. It's not going to help find go deeper into the tree.
Quote:
And can you use quotes like that to pass the argument of the operation in all distros?
Those aren't quotes--they are "backtics"--used to pass the output of one command to another.
To smurff: The trick is to first run the find command and be sure it does what you expect. Then you can incorporate it in a more complex structure. The error message implies that "rm" was given no arguements.
Why don't you use the built-in functionality of find? Something like
find dbbackup -name '*.dmp' -mtime +10 -exec rm {} \;
(notice the blank between the closing bracket and the slash).
Distribution: Solaris 11.4, Oracle Linux, Mint, Debian/WSL
Posts: 9,789
Rep:
Quote:
Originally Posted by smurff
Colucix, thank you. Its good to know but that command did not seem to be on my solaris box. But thank you anyway.
I'm afraid you post on the wrong forum then.
If your question is Solaris specific, report it for it to be moved on the Solaris forum. If you are looking for a solution working on both Linux, Solaris and other systems, then ask for a move to the programming forum.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.