Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
slrn /
slang /
[ HOME SHELL ]
Name
Size
Permission
Action
color.sl
3.41
KB
-rw-r--r--
gsort.sl
532
B
-rw-r--r--
ispell.sl
477
B
-rw-r--r--
latin2.sl
3.61
KB
-rw-r--r--
mailcap.sl
8.41
KB
-rw-r--r--
mime.sl
14.1
KB
-rw-r--r--
multipart.sl
2.19
KB
-rw-r--r--
nn.sl
2.29
KB
-rw-r--r--
posthook.sl
1.73
KB
-rw-r--r--
search.sl
1021
B
-rw-r--r--
slrn.sl
2.65
KB
-rw-r--r--
tin-art.sl
6.81
KB
-rw-r--r--
tin-group.sl
2.6
KB
-rw-r--r--
ttyprint.sl
510
B
-rw-r--r--
util.sl
936
B
-rw-r--r--
varset.sl
545
B
-rw-r--r--
xcomment.sl
781
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : nn.sl
%% Please note that these macros depend on the the ones defined in the file %% util.sl which also comes with slrn. Make sure to interpret it first. %!% I have no idea what this file has to do with the nn newsreader. %!% It simply defines a set of macros for selecting articles and then reading %!% the articles associated with the selected headers. Several people have %!% remarked that this is how one reads with nn. %!% %!% Based on that idea, here is how the macros in this file work: %!% %!% 1. Tag headers by one of the following methods: %!% %!% a. Move to header and press the ' key. %!% b. Select a header by pressing the header number associated %!% with it. %!% c. Select headers via author/subject regular expressions %!% %!% 2. After selection, read selected articles via: %!% [ Previous selected %!% ] Next Selected variable NN_Tag_Selection_Mode = 0; define nn_tag_header () { NN_Tag_Selection_Mode = 1; star_tag_header (); } define header_number_hook () { nn_tag_header (); } define nn_read_prev_tagged () { !if (prev_tagged_header ()) error ("No more tagged headers."); star_untag_header (); art_select_article (); } define nn_read_next_tagged () { mark_spot (); ERROR_BLOCK { goto_spot (); } if (NN_Tag_Selection_Mode) { NN_Tag_Selection_Mode = 0; header_bob (); } !if (get_header_flags () & HEADER_TAGGED) { !if (next_tagged_header ()) error ("No more tagged headers."); } star_untag_header (); art_select_article (); } define nn_tag_header_cmd () { nn_tag_header (); () = header_down (1); } define nn_tag_via_subject_regexp () { variable str; variable count = 0; str = read_mini ("Tag subjects pattern: ", "", ""); !if (strlen (str)) return; mark_spot (); uncollapse_threads (); while (re_fsearch_subject (str)) { nn_tag_header (); count++; !if (header_down (1)) break; } collapse_threads (); goto_spot (); vmessage ("%d headers marked.", count); } definekey ("nn_tag_via_subject_regexp", "%", "article"); definekey ("nn_tag_header_cmd", "'", "article"); definekey ("nn_read_next_tagged", "]", "article"); definekey ("nn_read_prev_tagged", "[", "article");
Close