Advertisement
puggan

/usr/local/bin/nano

Dec 11th, 2019
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.50 KB | None | 0 0
  1. #!/usr/bin/env php
  2. <?php
  3.  
  4. $sudo = false;
  5. $cmd = ['sudo', '/bin/nano'];
  6. foreach(array_slice($argv, 1) as $arg) {
  7.     $cmd[] = escapeshellarg($arg);
  8.     if($sudo) {
  9.         continue;
  10.     }
  11.     if(substr($arg, 0, 1) === '-') {
  12.         continue;
  13.     }
  14.     if(file_exists($arg)) {
  15.         if(!is_writable($arg)) {
  16.             $sudo = true;
  17.         }
  18.         continue;
  19.     }
  20.     $dir = dirname($arg);
  21.     if(is_dir($dir)) {
  22.         if(!is_writable($dir)) {
  23.             $sudo = true;
  24.         }
  25.         continue;
  26.     }
  27. }
  28. if(!$sudo) {
  29.     unset($cmd[0]);
  30. }
  31. passthru(implode(' ', $cmd));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement