Skip to content
Snippets Groups Projects
Commit ff24a7df authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

New: Add script to detect DOS (non Linux) files.

parent 29e6d01e
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
#------------------------------------------------------
# Script to find files that are not Unix encoded
#
# Laurent Destailleur - eldy@users.sourceforge.net
#------------------------------------------------------
# Usage: finddosfiles.sh
#------------------------------------------------------
# To detec
find . -type f -iname "*.php" -exec file "{}" + | grep CRLF
# To convert
#find . -type f -iname "*.php" -exec dos2unix "{}" +;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment