Linux web-conference.aiou.edu.pk 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 172.16.50.247 | : 3.129.63.214
Cant Read [ /etc/named.conf ]
7.4.3-4ubuntu2.28
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
manpages /
[ HOME SHELL ]
Name
Size
Permission
Action
Changes.old.gz
383.61
KB
-rw-r--r--
POSIX-MANPAGES
1.26
KB
-rw-r--r--
README.Debian
1.11
KB
-rw-r--r--
TODO.Debian
481
B
-rw-r--r--
changelog.Debian.gz
1.05
KB
-rw-r--r--
copyright
81.73
KB
-rw-r--r--
man-addons.el
1.76
KB
-rw-r--r--
man-pages-5.05.Announce
2.59
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : man-addons.el
;;; man-addons.el - some helpful additions for browsing man pages. ;;; ;;; Copyright (c) 1998-2001 Karl M. Hegbloom <karlheg@hegbloom.net> ;;; Released under the terms of the GPL version >= 2.0 ;;; ;;; See: /usr/share/common-licences/GPL-2 ;;; ;;; The usual instructions apply... Place this file in a directory on ;;; your `load-path' and then add (require 'man-addons) to your ;;; `user-init-file'. ;;; ;;; This is tested in XEmacs 21 with both the native XEmacs man.el and ;;; one I ported from GNU Emacs. I hope it works equally well for GNU ;;; Emacs users. ;;; ;;; After loading this file, when you have man page source files ;;; visible from a `dired' buffer, you can push `l' when the cursor is ;;; over them, and preview the page in man mode. I find this very ;;; helpful while editting manual pages! ;;; ;;;###autoload (defun dired-man-locally () "From a dired buffer, view the man page file at point, using \"man -l file\"." (interactive) (if (= 1 (function-max-args #'manual-entry)) (manual-entry (concat (dired-get-filename) " -l")) (manual-entry (dired-get-filename) "-l"))) ;;;###autoload (add-hook 'dired-setup-keys-hook #'(lambda () (define-key dired-mode-map [(?l)] #'dired-man-locally))) (require 'thingatpt) ;;;###autoload (defun man-locally-at-point () "From any buffer, view the man page file at point, using \"man -l file\". This is useful when you use `view-file' to visit one of the .list files in /var/lib/dpkg/info -- put the cursor over a man page listed there, and use `M-x man-locally-at-point' to view it." (interactive) (let ((manpage (thing-at-point 'filename))) (if (= 1 (function-max-args #'manual-entry)) (manual-entry (concat manpage " -l")) (manual-entry manpage "-l")))) (provide 'man-addons)
Close