sqlmap/extra/shutils/id.sh

11 lines
339 B
Bash
Raw Normal View History

#!/bin/bash
# $Id$
2012-01-11 18:59:46 +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" '{}' \;