Re: [OCLUG-Tech] Odd behaviour in find

2015-11-27 Thread Joe Burpee
On Wed, Nov 25, 2015 at 16:52:11 -0500, Alex Pilon wrote: > -find = subprocess.Popen(['find', '--'] + args.args, > stdout=subprocess.PIPE) > +find_args = ['-xdev'] if args.X else [] > +find = subprocess.Popen(['find'] + find_args + ['--'] + > args.args, >

Re: [OCLUG-Tech] Odd behaviour in find

2015-11-25 Thread Joe Burpee
On Wed, Nov 25, 2015 at 14:21:55 -0500, Alex Pilon wrote: > > On 15-11-25 01:39 PM, Alex Pilon wrote: > > > Is it just me or should this work? > > > > > > $ find -xdev -- foo > > > find: unknown predicate `--' > > > $ man find "This manual page talks about `options' within the

Re: [OCLUG-Tech] centos php issue / possibly SELinux

2015-04-21 Thread Joe Burpee
On Tue, Apr 21, 2015 at 15:07:34 -0400, Prof J C Nash (U30A) wrote: So now I need to figure out how to properly set the SELinux policies You should get useful ideas by running sealert Joe ___ Linux mailing list Linux@lists.oclug.on.ca

Re: [OCLUG-Tech] can anyone explain bash {fd} file descriptor notation?

2014-05-05 Thread Joe Burpee
On Mon, May 05, 2014 at 05:40:03 -0400, Robert P. J. Day wrote: $ echo test2 ${foofd} $ cat /tmp/foo.out test1 test2 $ it *appends* to the file, which is not what i was expecting. I'm guessing you were expecting the fd to be automatically closed, but I don't think that would make much

Re: [OCLUG-Tech] a compelling application for bind mounts?

2014-01-02 Thread Joe Burpee
On Thu, Jan 02, 2014 at 09:36:05 -0500, Peter Sjöberg wrote: mount --bind has been around since kernel 2.4 but -d1 is way newer but du --max-depth=1 has been around for a while Joe ___ Linux mailing list Linux@lists.oclug.on.ca

Re: [OCLUG-Tech] Stupid question?

2013-08-25 Thread Joe Burpee
In Nautilus click Preferences, Behaviour, Executable Text Files, Run ... Joe On Sun, Aug 25, 2013 at 12:57:52 -0400, Rick wrote: I keep a shell script called 'ed' in my project directories. All it does is open gvim, paged, with the most edited files in that project section. Vim rules

Re: [OCLUG-Tech] wget passphrase

2010-04-01 Thread Joe Burpee
On Wed, Mar 31, 2010 at 14:55:04 -0400, piper.guy1 wrote: On Wed, Mar 31, 2010 at 2:35 PM, Joe Burpee j...@burkby.com wrote: On Wed, Mar 31, 2010 at 12:54:20 -0400, piper.guy1 wrote: 1. Can you create PEM's in OpenSSL without a passphrase? openssl req -nodes ... Now, as a newbie

Re: [OCLUG-Tech] wget passphrase

2010-03-31 Thread Joe Burpee
On Wed, Mar 31, 2010 at 12:54:20 -0400, piper.guy1 wrote: 1. Can you create PEM's in OpenSSL without a passphrase? openssl req -nodes ... man req nodes = No DES Joe ___ Linux mailing list Linux@lists.oclug.on.ca