sqlmap/extra/shutils/blanks.sh

8 lines
255 B
Bash
Raw Normal View History

#!/bin/bash
2024-01-04 01:11:52 +03:00
# Copyright (c) 2006-2024 sqlmap developers (https://sqlmap.org/)
2017-10-11 15:50:46 +03:00
# See the file 'LICENSE' for copying permission
# Removes trailing spaces from blank lines inside project files
2012-12-10 20:37:43 +04:00
find . -type f -iname '*.py' -exec sed -i 's/^[ \t]*$//' {} \;