⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hidefile

📁 文件隐藏继续上传
💻
字号:
#!/bin/bashLIBHIDEFILE="/usr/lib/libhidefile.so"if [ ! -n "$LD_PRELOAD" ]; then	LD_PRELOAD="$LIBHIDEFILE"else	# This is The Right Way (tm)	# Appending the new library to the old LD_PRELOAD would suck.	LD_PRELOAD="$LIBHIDEFILE $LD_PRELOAD"fiexport LD_PRELOADif [ $# = 0 ]; then	prog="$SHELL"else	prog="$1"	shiftfiexec "$prog" "$@"

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -