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 /
build /
patch /
Delete
Unzip
Name
Size
Permission
Date
Action
README
401
B
-rwxr-xr-x
2021-01-30 17:40
buildpatch.sh
1.13
KB
-rwxr-xr-x
2021-01-30 17:40
Save
Rename
#/bin/ksh #---------------------------------------------------------------------------- # \file build/patch/buildpatch.sh # \brief Create patch files # \author (c)2009-2011 Laurent Destailleur <eldy@users.sourceforge.net> #---------------------------------------------------------------------------- # This script can be used to build a patch after a developer has made # changes on files in its Dolibarr tree. # The output patch file can then be submited on Dolibarr dev mailing-list, # with explanation on its goal, for inclusion in main branch. #---------------------------------------------------------------------------- echo ----- Building patch file mypatch.patch ----- if [ -z "$1" ] || [ -z "$2" ]; then echo Usage: buildpatch.sh original_dir_path modified_dir_path echo Example: buildpatch.sh /mydirA/dolibarrold /mydirB/dolibarrnew else echo Build patch between \"$1\" and \"$2\" diff -BNaur --exclude=CVS --exclude="*.patch" --exclude=".#*" --exclude="*~" --exclude="*.rej" --exclude="*.orig" --exclude="*.bak" --exclude=conf.php --exclude=documents $1 $2 > mypatch.patch fi