Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.35
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html /
asiafood.bdcloud.fr /
dev /
tools /
Delete
Unzip
Name
Size
Permission
Date
Action
test
[ DIR ]
drwxr-xr-x
2025-11-08 11:16
detectnotabfiles.sh
675
B
-rwxr-xr-x
2021-01-30 17:42
dolibarr-mysql2pgsql.pl
12
KB
-rwxr-xr-x
2021-01-30 17:42
dolibarr-postgres2mysql.php
20.21
KB
-rwxr-xr-x
2021-01-30 17:42
fixaltlanguages.sh
2.32
KB
-rwxr-xr-x
2021-01-30 17:42
fixdosfiles.sh
1.83
KB
-rwxr-xr-x
2021-01-30 17:42
fixduplicatelangkey.sh
1.06
KB
-rwxr-xr-x
2021-01-30 17:42
fixduplicatelanglines.sh
985
B
-rwxr-xr-x
2021-01-30 17:42
fixperms.sh
763
B
-rwxr-xr-x
2021-01-30 17:42
fixutf8bomfiles.sh
1.79
KB
-rwxr-xr-x
2021-01-30 17:42
github_authors_peryear.sh
477
B
-rwxr-xr-x
2021-01-30 17:42
github_commits_perversion.sh
607
B
-rwxr-xr-x
2021-01-30 17:42
optimize_images.sh
5.14
KB
-rwxr-xr-x
2021-01-30 17:42
resize_window.sh
728
B
-rwxr-xr-x
2021-01-30 17:42
snakeCaseToCamelCase.sh
4.55
KB
-rwxr-xr-x
2021-01-30 17:42
Save
Rename
#!/bin/sh #------------------------------------------------------ # Script to find files that are not Unix encoded # # Laurent Destailleur - eldy@users.sourceforge.net #------------------------------------------------------ # Usage: fixdosfiles.sh [list|fix] #------------------------------------------------------ # Syntax if [ "x$1" != "xlist" -a "x$1" != "xfix" ] then echo "This script detect or clean files with CR+LF into files with LF only. All source files are included, also files into includes." echo "Usage: fixdosfiles.sh [list|fix]" fi # To detec if [ "x$1" = "xlist" ] then find . \( -iname "functions" -o -iname "*.md" -o -iname "*.html" -o -iname "*.htm" -o -iname "*.php" -o -iname "*.sh" -o -iname "*.cml" -o -iname "*.css" -o -iname "*.js" -o -iname "*.lang" -o -iname "*.pl" -o -iname "*.sql" -o -iname "*.txt" -o -iname "*.xml" -o -iname "*.pml" \) -exec file "{}" + | grep -v 'documents\/website' | grep -v 'documents\/mdedias' | grep CRLF # find . \( -iname "*.md" -o -iname "*.html" -o -iname "*.htm" -o -iname "*.php" -o -iname "*.sh" -o -iname "*.cml" -o -iname "*.css" -o -iname "*.js" -o -iname "*.lang" -o -iname "*.pl" -o -iname "*.sql" -o -iname "*.txt" -o -iname "*.xml" \) -exec file "{}" + | grep -v 'documents\/website' | grep -v 'documents\/mdedias' | grep -v 'htdocs\/includes' | grep CRLF fi # To convert if [ "x$1" = "xfix" ] then for fic in `find . \( -iname "functions" -o -iname "*.md" -o -iname "*.html" -o -iname "*.htm" -o -iname "*.php" -o -iname "*.sh" -o -iname "*.cml" -o -iname "*.css" -o -iname "*.js" -o -iname "*.lang" -o -iname "*.pl" -o -iname "*.sql" -o -iname "*.txt" -o -iname "*.xml" -o -iname "*.pml" \) -exec file "{}" + | grep -v 'documents\/website' | grep -v 'documents\/mdedias' | grep CRLF | awk -F':' '{ print $1 }' ` do echo "Fix file $fic" dos2unix "$fic" done; fi