next up previous
Next: About this document ... Up: wyklad6 Previous: Oddzielanie powtarzających się linii;

Porządkowanie pliku; polecenie sort

[adam@etoh ~]$ more Slownik
nowy      new     nuevo
stary     old     viejo
maly      small   pequeno
wielki    big     grande
dobry     good    bueno
zly       bad     malo
bogaty    rich    rico
biedny    poor    pobre

[adam@etoh ~]$ sort Slownik
biedny    poor    pobre
bogaty    rich    rico
dobry     good    bueno
maly      small   pequeno
nowy      new     nuevo
stary     old     viejo
wielki    big     grande
zly       bad     malo

[adam@etoh ~]$ sort +1 Slownik
zly       bad     malo
wielki    big     grande
dobry     good    bueno
nowy      new     nuevo
stary     old     viejo
biedny    poor    pobre
bogaty    rich    rico
maly      small   pequeno

[adam@etoh ~]$ more liczby
23
45
001
030
55

[adam@etoh ~]$ sort liczby
001
030
23
45
55

[adam@etoh ~]$ sort -n liczby
001
23
030
45
55

[adam@etoh ~]$ sort -nr liczby
55
45
030
23
001

[adam@etoh ~]$ ls -l | sort -nr +4 | head -5
-r--r--r--   1 adam     users    130570240 May  9  2000 wkssrc.tar
-rwxr-xr-x   1 adam     users     4919275 Mar 30  2000 gamess-Linux.99.x
-rwxr-xr-x   1 adam     users     1905560 Mar 21  2000 unres7CSA
-rw-r--r--   1 adam     users      309194 May 15  2000 T0073_1_algorytm.mol
-rwxr-xr-x   1 adam     users      267585 May  5  2000 link

[adam@etoh ~]$ head /etc/passwd
root:x:0:0:root:/root:/bin/tcsh
bin:x:1:1:bin:/bin:
daemon:x:2:2:daemon:/sbin:
adm:x:3:4:adm:/var/adm:
lp:x:4:7:lp:/var/spool/lpd:
sync:x:5:0:sync:/sbin:/bin/sync
shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown
halt:x:7:0:halt:/sbin:/sbin/halt
mail:x:8:12:mail:/var/spool/mail:
news:x:9:13:news:/var/spool/news:

[adam@etoh ~]$ sort -t: -n -r +2 /etc/passwd | head -5
tester:x:8001:800:tester:/big/home/tester:/bin/tcsh
carya:x:5368:800:Anna Fabianska:/big/home/carya:/bin/tcsh
kolo:x:5367:800:anabella Kolodziej:/big/home/kolo:/bin/tcsh
sosna:x:5366:800:Justyna Sosnowska:/big/home/sosna:/bin/tcsh
wachucik:x:5365:800:Katarzyna Wachucik (CH):/big/home/wachucik:/bin/tcsh



Adam Liwo 2002-03-07