Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 18.191.163.22
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
git-core /
mergetools /
Delete
Unzip
Name
Size
Permission
Date
Action
araxis
358
B
-rw-r--r--
2025-01-13 20:13
bc
423
B
-rw-r--r--
2025-01-13 20:13
codecompare
353
B
-rw-r--r--
2025-01-13 20:13
deltawalker
663
B
-rw-r--r--
2025-01-13 20:13
diffmerge
309
B
-rw-r--r--
2025-01-13 20:13
diffuse
248
B
-rw-r--r--
2025-01-13 20:13
ecmerge
306
B
-rw-r--r--
2025-01-13 20:13
emerge
438
B
-rw-r--r--
2025-01-13 20:13
examdiff
336
B
-rw-r--r--
2025-01-13 20:13
guiffy
263
B
-rw-r--r--
2025-01-13 20:13
gvimdiff
29
B
-rw-r--r--
2025-01-13 20:13
kdiff3
673
B
-rw-r--r--
2025-01-13 20:13
kompare
117
B
-rw-r--r--
2025-01-13 20:13
meld
1.94
KB
-rw-r--r--
2025-01-13 20:13
nvimdiff
29
B
-rw-r--r--
2025-01-13 20:13
opendiff
267
B
-rw-r--r--
2025-01-13 20:13
p4merge
617
B
-rw-r--r--
2025-01-13 20:13
smerge
264
B
-rw-r--r--
2025-01-13 20:13
tkdiff
258
B
-rw-r--r--
2025-01-13 20:13
tortoisemerge
602
B
-rw-r--r--
2025-01-13 20:13
vimdiff
1.19
KB
-rw-r--r--
2025-01-13 20:13
winmerge
361
B
-rw-r--r--
2025-01-13 20:13
xxdiff
768
B
-rw-r--r--
2025-01-13 20:13
Save
Rename
diff_cmd () { "$merge_tool_path" "$LOCAL" "$REMOTE" } merge_cmd () { check_meld_for_features option_auto_merge= if test "$meld_use_auto_merge_option" = true then option_auto_merge="--auto-merge" fi if test "$meld_has_output_option" = true then "$merge_tool_path" $option_auto_merge --output="$MERGED" \ "$LOCAL" "$BASE" "$REMOTE" else "$merge_tool_path" $option_auto_merge "$LOCAL" "$MERGED" "$REMOTE" fi } # Get meld help message init_meld_help_msg () { if test -z "$meld_help_msg" then meld_path="$(git config mergetool.meld.path || echo meld)" meld_help_msg=$("$meld_path" --help 2>&1) fi } # Check the features and set flags check_meld_for_features () { # Check whether we should use 'meld --output <file>' if test -z "$meld_has_output_option" then meld_has_output_option=$(git config --bool mergetool.meld.hasOutput) case "$meld_has_output_option" in true | false) : use configured value ;; *) : empty or invalid configured value, detecting "--output" automatically init_meld_help_msg case "$meld_help_msg" in *"--output="* | *'[OPTION...]'*) # All version that has [OPTION...] supports --output meld_has_output_option=true ;; *) meld_has_output_option=false ;; esac ;; esac fi # Check whether we should use 'meld --auto-merge ...' if test -z "$meld_use_auto_merge_option" then meld_use_auto_merge_option=$( git config --bool-or-str mergetool.meld.useAutoMerge ) case "$meld_use_auto_merge_option" in true | false) : use well formatted boolean value ;; auto) # testing the "--auto-merge" option only if config is "auto" init_meld_help_msg case "$meld_help_msg" in *"--auto-merge"* | *'[OPTION...]'*) meld_use_auto_merge_option=true ;; *) meld_use_auto_merge_option=false ;; esac ;; "") meld_use_auto_merge_option=false ;; *) die "unknown mergetool.meld.useAutoMerge: $meld_use_auto_merge_option" ;; esac fi }