index
:
openslx-ng/ipxe.git
master
openslx
Fork of ipxe; additional commands and features
OpenSLX
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
src
/
util
/
zfilelen.pl
blob: 1f58ff9eee591add78f4e3574560a7992c6b6a6a (
plain
) (
blame
)
1
2
3
4
5
6
7
8
#!/usr/bin/perl -w
use
bytes
;
local
$/;
$_
= <>;
print length
(
$_
);
exit
;