Solved Basic question - mind gone blank

webadmin@FreeBSDweb ~/backups/webfiles% ll
Code:
total 13
drwxr-xr-x  12 www  webadmin  48 May 26 15:20 lensa/
Could anyone please tell me what the number 48 in the result above represent?

I completely forgot my basic skills :(

From memory it should be the size of the directory but if I do du -sh lensa, it return
Code:
11M  lensa/
 
find my 5 years old notes back...
and in there in red, I written that "in unix, EVERYTHING" is a file!! lol
 
From the ls man page on 10-STABLE I see
Code:
If the -l option is given, the following information is displayed for each file: 
file mode, number of links, owner name, group name, MAC label, 
number of bytes in the file, abbreviated month, day-of-month file as last 
modified, hour file last modified, minute file last modified, and the pathname.
What version of FreeBSD is that? Here is sample output from ls -l on my system.
Code:
drwxr-xr-x   8 jrm  jrm       8 18 Apr 14:58 R
Are you missing a column for the size in bytes? Maybe not. The output is influence by lots of environment variables and locale settings.

EDIT: Nevermind, I misinterpreted my output. Perhaps a good reason not to use the date format I'm using.
 
Back
Top