added new directory with shell utils needed here and there for project maintanence

This commit is contained in:
Miroslav Stampar 2010-11-03 10:19:31 +00:00
parent 6adee3792a
commit effd712ecf
2 changed files with 18 additions and 0 deletions

9
extra/shutils/blanks.sh Executable file
View File

@ -0,0 +1,9 @@
#!/bin/bash
# $Id$
# Copyright (c) 2006-2010 sqlmap developers (http://sqlmap.sourceforge.net/)
# See the file 'doc/COPYING' for copying permission
# Removes trailing spaces from blank lines inside project files
find ../../. -type f -iname '*.py' -exec sed -i 's/^[ \t]*$//' {} \;

9
extra/shutils/id.sh Executable file
View File

@ -0,0 +1,9 @@
#!/bin/bash
# $Id$
# Copyright (c) 2006-2010 sqlmap developers (http://sqlmap.sourceforge.net/)
# See the file 'doc/COPYING' for copying permission
# Adds SVN property 'Id' to project files
find ../../. -type f -name "*.py" -exec svn propset svn:keywords "Id" '{}' \;