Hackfut Security File Manager
Current Path:
/opt/td-agent/embedded/bin
opt
/
td-agent
/
embedded
/
bin
/
📁
..
📄
bundle
(617 B)
📄
bundler
(619 B)
📄
c_rehash
(5 KB)
📄
captoinfo
(62.02 KB)
📄
clear
(7.25 KB)
📄
clusterdb
(59.38 KB)
📄
createdb
(58.96 KB)
📄
createlang
(92.9 KB)
📄
createuser
(62.8 KB)
📄
dropdb
(54.73 KB)
📄
droplang
(92.83 KB)
📄
dropuser
(54.67 KB)
📄
ecpg
(848.54 KB)
📄
erb
(4.74 KB)
📄
fluent-binlog-reader
(645 B)
📄
fluent-ca-generate
(641 B)
📄
fluent-cat
(625 B)
📄
fluent-debug
(629 B)
📄
fluent-gem
(625 B)
📄
fluent-plugin-config-format
(659 B)
📄
fluent-plugin-generate
(649 B)
📄
fluent-post
(651 B)
📄
fluentd
(619 B)
📄
gem
(560 B)
📄
httpclient
(637 B)
📄
infocmp
(56.5 KB)
📄
infotocap
(62.02 KB)
📄
initdb
(107.65 KB)
📄
irb
(204 B)
📄
jemalloc-config
(2.09 KB)
📄
jemalloc.sh
(169 B)
📄
jeprof
(174.41 KB)
📄
libtool
(307.93 KB)
📄
libtoolize
(76.53 KB)
📄
lzcat
(87.43 KB)
📄
lzma
(87.43 KB)
📄
lzmadec
(12.81 KB)
📄
lzmainfo
(11.89 KB)
📄
makedepend
(36.71 KB)
📄
ncurses5-config
(5.22 KB)
📄
ncursesw5-config
(5.22 KB)
📄
nokogiri
(625 B)
📄
ohai
(601 B)
📄
oid2name
(29.44 KB)
📄
openssl
(629.01 KB)
📄
pg_archivecleanup
(20.04 KB)
📄
pg_basebackup
(78.69 KB)
📄
pg_config
(29.49 KB)
📄
pg_controldata
(39.07 KB)
📄
pg_ctl
(45.81 KB)
📄
pg_dump
(403.05 KB)
📄
pg_dumpall
(92.09 KB)
📄
pg_isready
(55.27 KB)
📄
pg_receivexlog
(56.17 KB)
📄
pg_recvlogical
(60.33 KB)
📄
pg_resetxlog
(48.27 KB)
📄
pg_restore
(162.39 KB)
📄
pg_rewind
(86.14 KB)
📄
pg_standby
(25.97 KB)
📄
pg_test_fsync
(22.96 KB)
📄
pg_test_timing
(17.1 KB)
📄
pg_upgrade
(123.25 KB)
📄
pg_xlogdump
(76.27 KB)
📄
pgbench
(134.27 KB)
📄
pkg-config
(76.63 KB)
📄
postgres
(6.74 MB)
📄
postmaster
(6.74 MB)
📄
psql
(513.54 KB)
📄
rake
(601 B)
📄
rdoc
(952 B)
📄
reindexdb
(62.41 KB)
📄
reset
(22.69 KB)
📄
ri
(202 B)
📄
ruby
(11.08 KB)
📄
tabs
(14.18 KB)
📄
td
(589 B)
📄
tic
(62.02 KB)
📄
toe
(15.03 KB)
📄
tput
(15.58 KB)
📄
tset
(22.69 KB)
📄
unlzma
(87.43 KB)
📄
unxz
(87.43 KB)
📄
vacuumdb
(66.99 KB)
📄
vacuumlo
(27.14 KB)
📄
xml2-config
(1.81 KB)
📄
xmlcatalog
(19.32 KB)
📄
xmllint
(78.51 KB)
📄
xslt-config
(2.49 KB)
📄
xsltproc
(29.68 KB)
📄
xz
(87.43 KB)
📄
xzcat
(87.43 KB)
📄
xzdec
(12.78 KB)
Editing: jemalloc-config
#!/bin/sh usage() { cat <<EOF Usage: /opt/td-agent/embedded/bin/jemalloc-config <option> Options: --help | -h : Print usage. --version : Print jemalloc version. --revision : Print shared library revision number. --config : Print configure options used to build jemalloc. --prefix : Print installation directory prefix. --bindir : Print binary installation directory. --datadir : Print data installation directory. --includedir : Print include installation directory. --libdir : Print library installation directory. --mandir : Print manual page installation directory. --cc : Print compiler used to build jemalloc. --cflags : Print compiler flags used to build jemalloc. --cppflags : Print preprocessor flags used to build jemalloc. --ldflags : Print library flags used to build jemalloc. --libs : Print libraries jemalloc was linked against. EOF } prefix="/opt/td-agent/embedded" exec_prefix="/opt/td-agent/embedded" case "$1" in --help | -h) usage exit 0 ;; --version) echo "4.5.0-0-g04380e79f1e2428bd0ad000bbc6e3d2dfc6b66a5" ;; --revision) echo "2" ;; --config) echo "--disable-debug --prefix=/opt/td-agent/embedded 'CFLAGS=-I/opt/td-agent/embedded/include -O2' 'LDFLAGS=-Wl,-rpath,/opt/td-agent/embedded/lib -L/opt/td-agent/embedded/lib' 'CPPFLAGS=-I/opt/td-agent/embedded/include -O2'" ;; --prefix) echo "/opt/td-agent/embedded" ;; --bindir) echo "/opt/td-agent/embedded/bin" ;; --datadir) echo "/opt/td-agent/embedded/share" ;; --includedir) echo "/opt/td-agent/embedded/include" ;; --libdir) echo "/opt/td-agent/embedded/lib" ;; --mandir) echo "/opt/td-agent/embedded/share/man" ;; --cc) echo "gcc" ;; --cflags) echo "-std=gnu99 -Wall -Werror=declaration-after-statement -Wsign-compare -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -I/opt/td-agent/embedded/include -O2" ;; --cppflags) echo "-I/opt/td-agent/embedded/include -O2 -D_GNU_SOURCE -D_REENTRANT" ;; --ldflags) echo "-Wl,-rpath,/opt/td-agent/embedded/lib -L/opt/td-agent/embedded/lib " ;; --libs) echo "-lrt -lm -lpthread" ;; *) usage exit 1 esac
Upload File
Create Folder