Guest User

Untitled

a guest
Mar 14th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. #!/usr/bin/php-cli
  2. <?php
  3.  
  4. // Get the Options
  5. $opts = array();
  6. $argv0 = array_shift($argv);
  7.  
  8. while(count($argv)) {
  9. $key = array_shift($argv);
  10. $value = array_shift($argv);
  11. $opts[$key] = $value;
  12. }
  13.  
  14. shell_exec('sh /kalexiko/addkeys.sh' . $opts['user']);
  15. ?>
Add Comment
Please, Sign In to add comment