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

5번째 줄: 5번째 줄:
<source lang='Bash'>
<source lang='Bash'>
stat -c%s /etc/hosts
stat -c%s /etc/hosts
</source>
<source lang='Bash'>
ls -l /etc/hosts | awk '{print $5}'
</source>
</source>



2014년 11월 4일 (화) 14:53 판


1 Bash

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

2 PHP

echo filesize('/etc/hosts');

3 Python

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

4 같이 보기

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