in reply to size of a file
returns the number of BYTES in the file, which is what you want, right? If you want the number of records in the file, you'll need to either count delimiters or (if the records are fixed-length), divide the bytesize by the record length.-s $file
|
|---|