mirror of
https://github.com/sahinakkaya/til.git
synced 2024-11-12 20:19:38 +01:00
112 B
112 B
You can get the size of a file in bytes with:
stat -c %s file_name
# example
size=$(stat -c %s $myfile)