4 lines
98 B
Bash
4 lines
98 B
Bash
#!/bin/bash
|
|
SVNREV=`svn info "$1" | grep Revision | awk -F": " '{print $2}'`
|
|
echo $2$3${SVNREV}$4
|