mirror of
https://github.com/sahinakkaya/til.git
synced 2026-01-07 21:45:16 +03:00
116 B
116 B
You can get the size of a file in bytes with:
stat -c %s file_name
# example
size=$(stat -c %s $myfile)