mirror of
https://github.com/flokoe/bash-hackers-wiki.git
synced 2024-11-01 14:53:06 +01:00
20 lines
445 B
Plaintext
20 lines
445 B
Plaintext
|
====== Show size of a file ======
|
||
|
|
||
|
---- dataentry snipplet ----
|
||
|
snipplet_tags: files, file size
|
||
|
LastUpdate_dt: 2010-07-31
|
||
|
Contributors: Frank Lazzarini
|
||
|
type: snipplet
|
||
|
----
|
||
|
|
||
|
This is a simple snippet to echo the size of a file in bytes.
|
||
|
|
||
|
<code>
|
||
|
#!/bin/bash
|
||
|
FILENAME=/home/heiko/dummy/packages.txt
|
||
|
FILESIZE=$(wc -c < "$FILENAME")
|
||
|
# non standard way (GNU stat): FILESIZE=$(stat -c%s "$FILENAME")
|
||
|
|
||
|
echo "Size of $FILENAME = $FILESIZE bytes."
|
||
|
</code>
|