Hoofdstuk 7 Flashcards

1
Q

Wat is pipelining en hoe doe je het?

A

de output van een commando naar een ander comamndo sturen
|
bv. ls -al /etc -> very long list
ls -al /etc | less ->split per screen

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

De standaart output komt op het scherm terecht.

  1. zorg ervoor dat de output van ls -l in file1 komt.
  2. zorg ervoor dat de output van ls -l in file1 komt maar dat deze file niet overschreven word.
A

ls -l > file1

ls -l&raquo_space; file 1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Bekijk het aantal woorden van file1.

A

wc -w < file1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

bekijk het aantal bytes van file1.

A

wc -c < file1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

bekijk het aantal lijnen van file1

A

wc -l < file1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

geef de inhoud van file1 en file2 op het scherm weer

A

cat file1 file2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

zorg dat de errors die verschijnen als je file1 en file2 weergeeft op het scherm weggeschreven worden in file3

A

cat file1 file2 2>file3

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

zor dat alles wat weergegeven zou worden op het scherm van file1 en file2 terecht komt in file3

A

cat file1 file2 &>file3

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Wat is het commando grep voluit en wat kan je ermee?

A

global regular expression print

zoeken

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

zoek naar alle woorden die beginnen met een a met daarachter een letter van a tot z in file1

A

grep “a[a-z]” file1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Zoek naar ayb of axb in file1

A

grep “a[xy]b” file1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

zoek naar alle woorden die beginnen met een letter behalve a,b of c en gevolgd worden door n in file1.

A

grep “[^abc]n” file1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

zoek naar a of a meerdere keren achter elkaar herhaalt in file1.

A

grep “a*” file1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

hoe geef je een line start weer bij het grep commando?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

hoe geef je een line einde weer in het grep commando?

A

$

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

hoe geef je het begin van een woord weer bij het grep commando?

A

\

17
Q

hoe geef je het einde van een woord weer bij het grep commando?

A

>

18
Q

hoe geef je bij scripting een zin of woord weer?

A

echo”…”

19
Q

hoe begint een script en hoe heet het begin?

A
#!           -> shebang
begin script:
#! /bin/bash
20
Q

Welke rechten heb je nodig om een script uit te voeren?

A

execute rechten

21
Q

hoe voer je een script uit?

A

./(script)