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 /
doc /
jed-common /
html /
[ HOME SHELL ]
Name
Size
Permission
Action
contents_motif.svg
185
B
-rw-r--r--
index.html
3.4
KB
-rw-r--r--
jed.css
3.25
KB
-rw-r--r--
jed001.html
4.67
KB
-rw-r--r--
jed002.html
1.23
KB
-rw-r--r--
jed003.html
3.16
KB
-rw-r--r--
jed004.html
1.88
KB
-rw-r--r--
jed005.html
3.74
KB
-rw-r--r--
jed006.html
5.35
KB
-rw-r--r--
jed007.html
1.25
KB
-rw-r--r--
jed008.html
2.87
KB
-rw-r--r--
jed009.html
1.93
KB
-rw-r--r--
jed010.html
8.77
KB
-rw-r--r--
jed011.html
18.59
KB
-rw-r--r--
jed012.html
7.65
KB
-rw-r--r--
jed013.html
3.21
KB
-rw-r--r--
jed014.html
2.18
KB
-rw-r--r--
jed015.html
2.06
KB
-rw-r--r--
jed016.html
1.45
KB
-rw-r--r--
jed017.html
3.45
KB
-rw-r--r--
jed018.html
3.7
KB
-rw-r--r--
jed019.html
19.12
KB
-rw-r--r--
jed020.html
6.86
KB
-rw-r--r--
jed021.html
4.35
KB
-rw-r--r--
next_motif.svg
190
B
-rw-r--r--
previous_motif.svg
185
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jed005.html
<!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <meta name="generator" content="hevea 2.35"> <link rel="stylesheet" type="text/css" href="jed.css"> <title>Starting JED</title> </head> <body > <a href="jed004.html"><img src="previous_motif.svg" alt="Previous"></a> <a href="index.html"><img src="contents_motif.svg" alt="Up"></a> <a href="jed006.html"><img src="next_motif.svg" alt="Next"></a> <hr> <h2 id="sec5" class="section">4 Starting JED</h2> <p>Normally, <span style="font-weight:bold">jed</span> is started as</p><pre class="verbatim"> jed <file name> </pre><p> or </p><pre class="verbatim"> jed <file list> </pre><p>However, <span style="font-weight:bold">jed</span> also takes the switches defined in the following table: </p><pre class="verbatim"> Switch Meaning ------ ------- -batch run JED in batch mode. This is a non-interactive mode. -n do not load jed.rc (.jedrc) file. -g <n> goto line `n' in buffer -l <file> load `file' as S-Lang code. -f <function> execute S-Lang function named `function' -s <string> search forward for `string' -2 split window -i <file> insert <file> into current buffer. </pre><p>For example, the command line: </p><pre class="verbatim"> jed slang.c -g 1012 -s error -2 file.c -f eob </pre><p>will start up <span style="font-weight:bold">jed</span>, read in the file <span style="font-family:monospace">slang.c</span>, goto line 1012 of <span style="font-family:monospace">slang.c</span> and start searching for the string <span style="font-family:monospace">error</span>, split the window, read in <span style="font-family:monospace">file.c</span> and goto the end of the file.</p><p>If the <span style="font-family:monospace">-batch</span> parameter is used, it must be the first parameter. Similarly, if <span style="font-family:monospace">-n</span> is used, it must also be the first parameter unless used with the <span style="font-family:monospace">-batch</span> parameter in which case it must the second. <span style="font-weight:bold">jed</span> should only be run in batch mode when non–interactive operation is desired. For example, <span style="font-weight:bold">jed</span> is distributed with a file, <code class="verb">mkdoc.sl</code>, that contains S–Lang code to produce a help file for functions and variables. In fact, the help file <code class="verb">jed_funs.hlp</code> was created by entering</p><pre class="verbatim"> jed -batch -n -l mkdoc.sl </pre><p>at the command line.</p><p>Now suppose that you want to read in a file with the name of one of the switches, say <code class="verb">-2</code>. How can this be done? The answer depends upon the operating system. For Unix, instead of <span style="font-family:monospace">jed -2</span>, use <span style="font-family:monospace">jed ./-2</span>; for VMS, use <span style="font-family:monospace">jed []-2</span>. The case for MS-DOS is similar to Unix except that one must use the backslash.</p><p>It is possible to completely change <span style="font-weight:bold">jed</span>’s command line syntax through the use of the user defined function <code class="verb">command_line_hook</code>. In fact, the behavior described above is dictated by the value of <code class="verb">command_line_hook</code> as distributed in <code class="verb">site.sl</code>. See the section on hooks for details.</p> <hr> <a href="jed004.html"><img src="previous_motif.svg" alt="Previous"></a> <a href="index.html"><img src="contents_motif.svg" alt="Up"></a> <a href="jed006.html"><img src="next_motif.svg" alt="Next"></a> </body> </html>
Close