Process::UID.re_exchange â fixnum
Class Public methods
Exchange real and effective user IDs and return the new effective user ID. Not available on all platforms.
1 2 3 | [Process.uid, Process.euid] #=> [0, 31] Process:: UID .re_exchange #=> 0 [Process.uid, Process.euid] #=> [31, 0] |
Please login to continue.