Answers for "shell script to check size of file"

3

get file size in bash

# du is ok but is not accurate
# This is because it returns the disk usage for the target
# rather than the actual file size of the target.

# However, you can get more accurate results using the `--apparent-size` arg

du --apparent-size -h path/to/<file|folder>

# -h is tell it to print in a human readable format
Posted by: Guest on February-27-2021

Code answers related to "shell script to check size of file"

Browse Popular Code Answers by Language