Commit 0a8bb6d20b3faa6854c5a2301903ec82deab4b6f

Authored by Pedro L Coutin
0 parents
Exists in master

initial

Showing 2 changed files with 85 additions and 0 deletions Inline Diff

net_cmd_wkshp/notes View file @ 0a8bb6d
File was created 1 netcat
2
3 tcpdump!!
4
5 wireshark
6
7 nmap
8
9 ping
10
textedit_workshop/scribblescrabble View file @ 0a8bb6d
File was created 1 emacs
2 vi/vim (optional)
3 ed
4 sam
5 sublime
6 acme
7
8 Original UNIX text editor. Line editor, originally used on
9 teletypes.
10
11 Most of the original research Unix operating system was written
12 with ed on clunky teletypes.
13
14 First written in 1971 by Ken Thompson.
15
16 Regular expressions.
17
18 Commands:
19
20 a append
21
22 . dot, current line
23
24 1 First line
25 2 Second line
26 ...
27 $ Last line
28
29 s/old/new Substitute
30 p Print
31 n Print with line numbers (BSD, GNU addition)
32
33 No automatic indentation.
34
35 Why ed?
36 =======
37
38 If you end up having to fix a very broken *nix system, you might
39 not be able to use nano, or even a vi derivative. It's possible that
40 you could be forced to use ed under some strange scenarios, although
41 unlikely.
42
43 Also, regular expressions!
44