Stuff with the Perl Foundation. A couple of patches in the Perl core. A few CPAN modules. That about sums it up.
Jut thought this might prove useful for some folks. I know I borrowed this code from somewhere but, uncharacteristically, I didn't paste the URL in with the code, so I can't credit the source (I recall hacking the code, but I still can't claim credit).
If you're running OS X and you open a new terminal window, it's handy if it opens in the same directory as the one you're currently working in. The following script allows this (if you know of a better way, please let me know).
#!/bin/sh
#
# Open a new terminal in the cwd
#
CWD=`pwd`
osascript<<END
set thePath to "$CWD"
set myPath to (POSIX file thePath as alias)
try
tell application "Terminal"
activate
do script with command "cd \"" & thePath & "\""
end tell
end try
END
X.org (Score:1)
For X.org users, it's simply:
Just how old is this mistake now? (Score:1)
Pray that the current directory path never contains any shell metacharacters other than spaces.
Here's a Mac::Glue version (Score:2)
For iTerm:
Re: (Score:1)