Précédent Index Suivant

5.3  Des filtres, encore des filtres...

tr [-cds] [s1 [s2]]


cut [-clist] [filename]...                     
cut [-flist [-dc] [-s]] [-clist] [filename]...

homel% cat passwd
duchmol:641qXHzHthhjk:7713:77:Pierre Duchmol:/home/licence/duchmol:/bin/csh
marquet:UCRtTDCmnJEJM:7333:73:Philippe Marquet:/home/enseign/marquet:/bin/csh
albert:ruFx8ojbEQgMM:7507:75:Francis Albert:/home/maitrise/albert:/bin/csh
homel% cut -d: -f1,5 < passwd
duchmol:Pierre Duchmol
marquet:Philippe Marquet
albert:Francis Albert
homel% cut -d: -f3-5 < passwd
7713:77:Pierre Duchmol
7333:73:Philippe Marquet
7507:75:Francis Albert

paste [-dlist] file1 file2


uniq [-cdu] [inputfile [outputfile]]

$ cat test
on se repete
on se repete
on se repete plus !
on se repete plus !
on se repete plus !
fin
$ uniq < test
on se repete
on se repete plus !
fin
$ uniq -u < test
fin
$ uniq -c < test
2 on se repete
3 on se repete plus !
1 fin              

sort [-rdfn...] [-tc] [sort-field] [filename]...

homel% cat passwd
duchmol:641qXHzHthhjk:7713:77:Pierre Duchmol:/home/licence/duchmol:/bin/csh
marquet:UCRtTDCmnJEJM:7333:73:Philippe Marquet:/home/enseign/marquet:/bin/csh
albert:ruFx8ojbEQgMM:7507:75:Francis Albert:/home/maitrise/albert:/bin/csh
homel% sort -t: +2 -3 passwd
marquet:UCRtTDCmnJEJM:7333:73:Philippe Marquet:/home/enseign/marquet:/bin/csh
albert:ruFx8ojbEQgMM:7507:75:Francis Albert:/home/maitrise/albert:/bin/csh
duchmol:641qXHzHthhjk:7713:77:Pierre Duchmol:/home/licence/duchmol:/bin/csh
homel% sort -t: +4 -5 passwd
albert:ruFx8ojbEQgMM:7507:75:Francis Albert:/home/maitrise/albert:/bin/csh
marquet:UCRtTDCmnJEJM:7333:73:Philippe Marquet:/home/enseign/marquet:/bin/csh
duchmol:641qXHzHthhjk:7713:77:Pierre Duchmol:/home/licence/duchmol:/bin/csh

comm [-123] filename1 filename2


diff [-c...] filename1 filename2

homel% cat > afile
A
B
C
D
E
F
G
homel% cat > anotherfile
A
B
C
d
E
F
g
h
homel% diff afile anotherfile
4c4
< D
---
> d
7c7,8
< G
---
> g
> h

cmp [-s] filename1 filename2


join [-j[1|2]] m [-tc] [-o list] file1 file2


look [-df] [-tc] string [file]

  Base de données relationnelle


Précédent Index Suivant