Skip to content

Commit

Permalink
Try Idnan#2
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Hollingsworth committed Apr 2, 2017
1 parent 98c93a1 commit 6e339d8
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,6 @@ Hello This is a Test 1 2 3 4
```bash
sed 's/ /-/g' example.txt
```
*output*
```bash
Hello-This-is-a-Test-1-2-3-4
```
Expand All @@ -322,7 +321,6 @@ Hello-This-is-a-Test-1-2-3-4
```bash
sed 's/[0-9]/d/g' example.txt
```
*output*
```bash
Hello This is a Test d d d d
```
Expand All @@ -346,7 +344,6 @@ d
```bash
sort example.txt
```
*output*
```bash
a
b
Expand All @@ -361,7 +358,6 @@ g
```bash
sort example.txt | sort -R
```
*output*
```bash
b
f
Expand Down Expand Up @@ -391,7 +387,6 @@ c
```bash
sort example.txt | uniq
```
*output*
```bash
a
b
Expand All @@ -406,7 +401,6 @@ c
```bash
sort example.txt | uniq -c
```
*output*
```bash
3 a
2 b
Expand Down Expand Up @@ -467,7 +461,6 @@ red riding hood went to the park to play
```bash
cut -d " " -f2,7,9 example.txt
```
*output*
```bash
riding park play
```
Expand All @@ -479,7 +472,6 @@ display a line of text
```bash
echo Hello World
```
*output*
```bash
Hello World
```
Expand All @@ -488,7 +480,6 @@ Hello World
```bash
echo -ne "Hello\nWorld\n"
```
*output*
```bash
Hello
World
Expand All @@ -506,7 +497,6 @@ Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod
```bash
cat example.txt | fmt -w 20
```
*output*
```bash
Lorem ipsum
dolor sit amet,
Expand Down Expand Up @@ -541,7 +531,6 @@ Hello World Foo Bar Baz!
```bash
cat example.txt | tr 'a-z' 'A-Z'
```
*output*
```bash
HELLO WORLD FOO BAR BAZ!
```
Expand All @@ -550,7 +539,6 @@ HELLO WORLD FOO BAR BAZ!
```bash
cat example.txt | tr ' ' '\n'
```
*output*
```bash
Hello
World
Expand Down Expand Up @@ -589,7 +577,6 @@ amet.
```bash
nl -s". " example.txt
```
*output*
```bash
1. Lorem ipsum
2. dolor sit amet,
Expand Down Expand Up @@ -644,7 +631,6 @@ egrep '(Lorem|dolor)' example.txt
or
grep -E '(Lorem|dolor)' example.txt
```
*output*
```bash
Lorem ipsum
dolor sit amet,
Expand Down Expand Up @@ -687,7 +673,6 @@ fgrep '(Lorem|dolor)' example.txt
or
grep -F '(Lorem|dolor)' example.txt
```
*output*
```bash
foo (Lorem|dolor)
```
Expand Down

0 comments on commit 6e339d8

Please sign in to comment.