Untitled

By Soft Bison, 11 Years ago, written in Plain Text, viewed 851 times.
URL http://pb.stoleyour.com/view/027dbd62 Embed
Download Paste or View RawExpand paste to full width of browser
  1. my $in_prefix  = "K";
  2. my $out_prefix = "K";
  3.  
  4. if ( $in_traffic > 1024 ) {
  5.         $in_traffic = sprintf( "%.2f", $in_traffic / 1024 );
  6.         $in_prefix = "M";
  7. }
  8. if ( $out_traffic > 1024 ) {
  9.         $out_traffic = sprintf( "%.2f", $out_traffic / 1024 );
  10.         $out_prefix = "M";
  11. }
  12. if ( $in_traffic > 1024 * 1024 ) {
  13.         $in_traffic = sprintf( "%.2f", $in_traffic / 1024 * 1024 );
  14.         $in_prefix = "G";
  15. }
  16. if ( $out_traffic > 1024 * 1024 ) {
  17.         $out_traffic = sprintf( "%.2f",$out_traffic / 1024 * 1024 );
  18.         $out_prefix = "G";
  19. }

Replies to Untitled rss

Title Name When
Re: Untitled Mungo Curlew 11 Years ago.

Reply to "Untitled"

Here you can reply to the paste above