Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
php /
tests /
mongodb /
scripts /
Delete
Unzip
Name
Size
Permission
Date
Action
clang-format.sh
1.22
KB
-rw-r--r--
2025-04-09 02:56
convert-bson-corpus-tests.php
11.95
KB
-rw-r--r--
2025-04-09 02:56
generate-functionmap.php
4.35
KB
-rw-r--r--
2025-04-09 02:56
update-sbom.sh
823
B
-rw-r--r--
2025-04-09 02:56
update-submodule-sources.php
2.43
KB
-rw-r--r--
2025-04-09 02:56
Save
Rename
#!/bin/sh CLANG_ARGS="-Werror" if test x"$1" = xchanged; then FILES1=`git ls-files | grep -v "src/contrib" | grep -v "_arginfo.h" | grep '\.[ch]$'` FILES2=`git ls-files --others --exclude-standard | grep -v "src/contrib" | grep -v "_arginfo.h" | grep '\.[ch]$'` FILES="$FILES1 $FILES2" else FILES1=`git ls-files | grep -v "src/contrib" | grep -v "_arginfo.h" | grep '\.[ch]$'` FILES2=`git ls-files --others --exclude-standard | grep -v "src/contrib" | grep -v "_arginfo.h" | grep '\.[ch]$'` FILES="$FILES1 $FILES2" fi if test x"$1" = xcheck; then CLANG_ARGS="$CLANG_ARGS -n" fi # Find clang-format, we prefer -6.0, but also allow binaries without -suffix as # long as they're >= 6.0.0 CLANG_FORMAT=`which clang-format-6.0` if [ -z "$CLANG_FORMAT" ]; then CLANG_FORMAT=`which clang-format` fi if [ -z "$CLANG_FORMAT" ]; then echo "Couldn't find clang-format" exit fi VERSION=`$CLANG_FORMAT -version | cut -d " " -f 3` VERSION_MAJOR=`echo $VERSION | cut -d "." -f 1` if [ $VERSION_MAJOR -lt 6 ]; then echo "Found clang-format $VERSION but we need >= 6.0.0" exit fi FAILURE="" # Run formatter for i in $FILES; do $CLANG_FORMAT $CLANG_ARGS -i $i [ $? -eq 0 ] || FAILURE="yes" done if [ -z "$FAILURE" ]; then exit 0 fi exit 1