The following script can be used to copy all SVN properties from one file (presumably a file that's already under SVN control) to another file (which you presumably want to put under SVN control, and which you want to check in with the same SVN properties).<code>
#!/bin/sh
ORIG=$1 ; shift ;
[ -e "$ORIG" ] || exit ;
for PROP...
↧