"함수 filesize"의 두 판 사이의 차이

26번째 줄: 26번째 줄:
import os
import os
print( os.path.getsize('/etc/hosts') )
print( os.path.getsize('/etc/hosts') )
</source>
==Perl==
[[category: Perl]]
<source lang='Perl'>
print -s '/etc/hosts';
</source>
</source>



2018년 1월 18일 (목) 14:54 판

filesize
os.path.getsize

1 Bash

stat -c%s /etc/hosts
ls -l /etc/hosts | awk '{print $5}'
du -b /etc/hosts | awk '{print $1}'

2 PHP

echo filesize('/etc/hosts');

3 Python

import os
print( os.path.getsize('/etc/hosts') )

4 Perl

print -s '/etc/hosts';

5 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}