I've got a script (source) to parse svn info
to create a suitable string for Bash's $PS1
. Unfortunately this doesn't work on one system I'm using which is running Perl 5.8.8 - It outputs all lines instead of only the matches. What would be the Perl 5.8.8 equivalent to the following?
__svn_ps1()
{
local result=$(
svn info 2>/dev/null | \
perl -pe 's;^URL: .*?/((trunk)|(branches|tags)/([^/]*)).*;\2\4 ;p')
if [ -n "$result" ]
then
printf "${1:- (%s)}" $result
fi
}
The output from Perl 5.10 contains only a space, parenthesis, one of branch name, tag name or trunk
, and the end parenthesis. The output from Perl 5.8.8 (without the final p
) contains this plus a parenthesized version of each space-separated part of the svn info
output.
A possible workaround involves a simple grep '^URL: '
between the svn
and perl
commands, but I was hoping to avoid that since this will be executed for each Bash prompt.