mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 08:22:15 +01:00
7 lines
258 B
Bash
Executable file
7 lines
258 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Copyright (c) 2006-2013 sqlmap developers (http://sqlmap.org/)
|
|
# 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]*$//' {} \;
|