home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_disks
/
300-399
/
ff319.lzh
/
CNewsSrc
/
cnews.orig.lzh
/
misc
/
sizeof
< prev
Wrap
Text File
|
1989-06-27
|
292b
|
16 lines
#!/bin/sh
# sizeof - report size of files, totalled
case $# in
0) echo "Usage: sizeof file ..." >&2 ; exit 2 ;;
esac
ls -ld $* 2>/dev/null | awk 'BEGIN { tot = 0 }
{
if (NF == 8)
tot += $4
else if (NF == 9) # stupid clowns in AT&T changed format
tot += $5
}
END { print tot }'