sqlmap/extra/shutils/id.sh

9 lines
331 B
Bash
Raw Normal View History

#!/bin/bash
2012-06-28 01:32:16 +04:00
# Copyright (c) 2006-2012 sqlmap developers (http://www.sqlmap.org/)
# See the file 'doc/COPYING' for copying permission
# Adds SVN property 'Id' to project files
2011-05-06 17:53:10 +04:00
find ../../. -type f -iname "*.py" -exec sed -i s/\$Id.*$/\$Id\$/g '{}' \;
find ../../. -type f -iname "*.py" -exec svn propset svn:keywords "Id" '{}' \;