Help for this page

Select Code to Download


  1. or download this
      DB<5> printf "%04b", $mode ;
    1000000111101101
      DB<6> printf "%04b",  07777;
    111111111111
      DB<7>
    
  2. or download this
      1000000111101101 &
      0000111111111111
      ================
    = 0000000111101101
    
  3. or download this
      DB<8> $c = $mode & 07777;
    
      DB<9> printf "%04b", $c;
    111101101
      DB<10>
    
  4. or download this
      DB<10> printf "%04o", $c;
    0755
      DB<11>