Help for this page

Select Code to Download


  1. or download this
    $x % 2 ? $x += 10 : $x += 2
    
  2. or download this
     (($x % 2) ? ($x += 10) : $x) += 2
    
  3. or download this
    $capacity =($df_output =~ m[(\d+)%\s+/home$]) ? $1 : 'Match Error';