Help for this page

Select Code to Download


  1. or download this
    if (grep m{nfs}, grep m{/home}, map <>, local @ARGV=qw{/etc/mtab}) {
        # ...
    } else {
        # ...
    }
    
  2. or download this
    if (local @ARGV=qw(/etc/mtab) and grep /nfs/, grep m{/home}, <>) {
        # ...
    } else {
        # ...
    }