source: install/getsize.sh @ 9ec1a22

perl-5.22
Last change on this file since 9ec1a22 was c5c522c, checked in by Edwin Eefting <edwin@datux.nl>, 8 years ago

initial commit, transferred from cleaned syn3 svn tree

  • Property mode set to 100755
File size: 112 bytes
RevLine 
[c5c522c]1#!/bin/bash
2
3#returns size of a disc in Mb
4
5SIZE=`sfdisk -s $1` || exit 1
6(( SIZE = SIZE / 1000 ))
7echo "$SIZE"
Note: See TracBrowser for help on using the repository browser.