linux下获取文件大小

转自:http://blog.csdn.net/colin91/article/details/9119129

  1. #!/bin/bash  
  2.   
  3. size() {  
  4.   stat -c %s $1 | tr -d '\n'  
  5. }  
  6.   
  7. size "/home/cheng/vista.img"  

你可能感兴趣的:(linux下获取文件大小)