home *** CD-ROM | disk | FTP | other *** search
/ ftp.cse.unsw.edu.au / 2014.06.ftp.cse.unsw.edu.au.tar / ftp.cse.unsw.edu.au / pub / doc / languages / perl / nutshell / ch3 / swapuid < prev    next >
Encoding:
Text File  |  1992-10-18  |  123 b   |  5 lines

  1. #!/usr/bin/perl
  2.  
  3. $< = $>;        # set real uid to the effective uid
  4. ($<,$>) = ($>,$<);      # swap real and effective uid
  5.