]> bbs.cooldavid.org Git - net-next-2.6.git/blame - scripts/bin_size
exofs: Kbuild, Headers and osd utils
[net-next-2.6.git] / scripts / bin_size
CommitLineData
bc22c17e
AK
1#!/bin/sh
2
3if [ $# = 0 ] ; then
4 echo Usage: $0 file
5fi
6
7size_dec=`stat -c "%s" $1`
8size_hex_echo_string=`printf "%08x" $size_dec |
9 sed 's/\(..\)\(..\)\(..\)\(..\)/\\\\x\4\\\\x\3\\\\x\2\\\\x\1/g'`
10/bin/echo -ne $size_hex_echo_string