til/bash-scripting/getting-the-size-of-a-file.md

7 lines
112 B
Markdown
Raw Normal View History

2021-07-03 16:14:42 +02:00
You can get the size of a file in bytes with:
```
stat -c %s file_name
# example
size=$(stat -c %s $myfile)
```