mirror of
git://slackware.nl/current.git
synced 2024-12-31 10:28:29 +01:00
7 lines
102 B
Text
7 lines
102 B
Text
|
#!/bin/sh
|
||
|
#
|
||
|
# Print the size of a file, in bytes.
|
||
|
#
|
||
|
SIZE=`ls -l -d -G $1 | cut -b23-32`
|
||
|
echo -n $SIZE
|