mirror of
https://github.com/sahinakkaya/til.git
synced 2025-04-19 17:22:07 +02: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)