similar to: delete directories with find and exclude other directories

Displaying 7 results from an estimated 7 matches similar to: "delete directories with find and exclude other directories"

2016 Feb 03
0
delete directories with find and exclude other directories
Tim Dunphy wrote: > Hi all, > > I'm attempting to delete some directories and I want to be able to exclude > a directory called 'logs' from being deleted. > > This is my basic find operation (without the exclusion) > > # find . -type d |tail -10 > ./d20160124-1120-df8mfb/deployments > ./d20160124-1120-df8mfb/releases > ./d20160131-16993-vazqg5 >
2016 Feb 03
0
delete directories with find and exclude other directories
On Wed, February 3, 2016 11:37 am, Tim Dunphy wrote: > Hi all, > > I'm attempting to delete some directories and I want to be able to exclude > a directory called 'logs' from being deleted. > > This is my basic find operation (without the exclusion) > > # find . -type d |tail -10 > ./d20160124-1120-df8mfb/deployments > ./d20160124-1120-df8mfb/releases
2009 Oct 23
11
soft lockups during live migrate..
Trying to migrate a 64bit PV guest with 64GB running medium to heavy load on xen 3.4.0, it is showing lot of soft lockups. The softlockups are causing dom0 reboot by the cluster FS. The hardware has 256GB and 32 CPUs. Looking into the hypervisor thru kdb, I see one cpu in sh_resync_all() while all other 31 appear spinning on the shadow_lock. I vaguely remember seeing some thread on this while
2007 Jul 20
1
Installation Output and First Use Output for FL 7
Hi, Below is the installation output and the first use output for FL 7: superman@travisf-linux:~$ cd Programs superman@travisf-linux:~/Programs$ ls AdobeReader_enu-7.0.9-1.i386.tar.gz netbeans-6.0m10-full-linux.sh ASSP_1.3.1-Install.zip RealPlayer flstudio7_RC6b.exe RealPlayer10GOLD.bin ImportExportTools-1.2.xpi Serial Numbers.odt
2005 Jul 06
2
SIP Xten eyeBeam Video Problems
Hello all, I HAD video working before I upgraded to 1.08 (latest stable with Gentoo) and now it won't work. I just see noise bars and not the video. I know the camera works as I can use it in other programs such as AIM & Yahoo. I have the following setup: sip.conf [general] videosupport = yes port = 5060 ; Port to bind to (SIP is 5060) bindaddr = 0.0.0.0 ; Address to bind
2019 Jun 13
2
Dovecot director: show user breakdown by director?
Hi, We have recently started using the director in some tests. We are using the static passdb setup (proxy=y nopassword=y) for now, where authentication is done on the downstream IMAP servers. "dovecot director status" shows a breakdown of proxied connections per backend, but there does not seem to be a similar breakdown of user connections per director. The output of
2006 May 23
4
''key not found'' problem with saving model object.
Hello, I have the following structure: model foo has_many :bars:, :dependent => true end model bar belongs_to :foo end In my action, when i try to save foo: def save begin f = foo.new f.a = 5 begin b = bar.new b.a = 10 f.bars << b rescue Exception => exc ... end f.save! <-- This does not happen