projects
/
linux-2.6
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
ocfs2: fix leaf start calculation in ocfs2_dx_dir_rebalance()
[linux-2.6]
/
scripts
/
bin_size
1
#!/bin/sh
2
3
if [ $# = 0 ] ; then
4
echo Usage: $0 file
5
fi
6
7
size_dec=`stat -c "%s" $1`
8
size_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