Linux cpanel.rrshost.in 5.15.0-25-generic #25-Ubuntu SMP Wed Mar 30 15:54:22 UTC 2022 x86_64
Apache
: 109.123.238.221 | : 172.69.130.94
128 Domain
8.2.28
aev999
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
emacsen-common /
[ HOME SHELL ]
Name
Size
Permission
Action
changelog.gz
3.18
KB
-rw-r--r--
copyright
431
B
-rw-r--r--
debian-emacs-policy.gz
3.78
KB
-rw-r--r--
sample-package-install-foo
723
B
-rw-r--r--
sample-package-remove-foo
401
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sample-package-install-foo
#!/bin/sh # /usr/lib/emacsen-common/packages/install/foo # [ Sample only -- this script hasn't been tested, so be careful. ] set -e flavor="$1" echo "install/foo: Handling install of emacsen flavor $flavor" byte_compile_options='-batch -f batch-byte-compile' elc_dir="/usr/share/$flavor/site-lisp/foo/" mkdir -p "$elc_dir" # Create symlinks to the .el files (see debian-emacs-polcy). This # makes complation easy, and allows find-function and find-library to # work properly. (cd "$elc_dir" && cp -s ../../../foo/*.el .) # Byte compile them (cd "$elc_dir" set +e "$flavor" $byte_compile_options *.el > install.log 2>&1 if test $? -ne 0 then cat install.log exit 1 fi set -e gzip -9v install.log) exit 0
Close