Hi:
What would this command do?
find . -print : xargs rm
Would it affect the current directory only or all the directories?
Thanks.
http://www.experts-exchange.com/OS/Unix/Q_20251230.html
Zones:
UnixDate Answered: 01/09/2002 Grade: A Views: 0
I running RedHat ES3 with Oracle and i get this error when i run a .sh file command:
¨find /home/maconomy | xargs chown maconomy:maconomy¨
xargs: unmatched single quote!
any clues?
http://www.experts-exchange.com/OS/Linux/Administration/Q_21412143.html
Zones:
Linux AdminDate Answered: 05/04/2005 Grade: A Views: 0
Hi gurus
I have in cron next command:
find /home/user_A -size +800 -mtime +7 -print | xargs rm -f
This works fine for filenames which doesn't include emty spaces.
So filename ThisIs...
http://www.experts-exchange.com/OS/Linux/Administration/Q_20762895.html
Zones:
Linux AdminDate Answered: 10/13/2003 Grade: A Views: 51
I am using sed to modify a directory of files. I want the modified files to be renamed with a .new extension.
So, right now I'm doing something like this:
ls *.txt | xargs -i sed -e 'stuff' {...
http://www.experts-exchange.com/Programming/System/Linux/Q_21343093.html
Zones:
Linux DevDate Answered: 03/09/2005 Grade: B Views: 0
I have 5 directories tmp1, tmp2, tmp3, tmp4, tmp5 that I am manually going into each folder and typing the following command: find . -name 'spam*' | xargs rm
I am doing this to avoid the "too ...
http://www.experts-exchange.com/OS/Linux/Administration/Q_22827000.html
I am using SUSE 10.0. I have some files that appear either as .zip or .txt randomly. Each file has a date / time stamp connected to them. They are in the following format.
BOBapp04-04-2006@19...
http://www.experts-exchange.com/OS/Linux/Q_21801567.html
Zones:
LinuxDate Answered: 04/07/2006 Grade: A Views: 4
I have 200 users that place files in the /tmp directory. These users all have a username that starts with user1. So for example:
user101
user102
.....
user130
user131
.... etc
There are ...
http://www.experts-exchange.com/OS/Linux/Q_22068556.html