使用 cmder 在 Windows 上递归删除 php 文件的尾部斜杠

使用 cmder 在 Windows 上递归删除 php 文件的尾部斜杠

我需要删除 php 文件上的所有尾部斜杠。我在 Windows 上使用 cmder。

我用这个命令来查找文件,但是文件太多了。

find ./ -name "*.php" | xargs grep -c -P '\s+$' | grep -v ':0$'

我找到了这个,但我不知道如何使用它:

sed -i 's/[ \t]*$//' "$1"

相关内容