Stuff with the Perl Foundation. A couple of patches in the Perl core. A few CPAN modules. That about sums it up.
The joys of trying to fix a tiny problem, trying to do it quickly and not having enough coffee.
$ mkdir conf/devel
$ cp -R conf/* conf/devel
Hey, why is that taking so long?
Sigh.
yeah, why? (Score:1)
Re: (Score:1)
=> mkdir conf; mkdir conf/devel; touch conf/a
=> find conf
conf
conf/devel
conf/a
=> cp -R conf/* conf/devel/
cp: cannot copy a directory, `conf/devel', into itself, `conf/devel/devel'
=> find conf
conf
conf/devel
conf/devel/a
conf/devel/devel
conf/devel/devel/a
conf/a
one level too deep, but it stopped quickly. standard bash from ubuntu.
=> bash --version
GNU bash, version 3.2.13(1)-release (i486-pc-linux-gnu)
Copyright (C) 2005 Free Software
Re: (Score:2)
Re: (Score:2)
Oh, and my bash:
zzzz (Score:1)
Easily fixed (Score:1)
Not the same mistake, but related (Score:2)
Re: (Score:2)