From fb0380f48203a11584773f3db335eaadd9cc6fdf Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sun, 27 Nov 2011 11:23:55 -0500 Subject: This zip file was identified as ltshell-3.5.zip --- shell/bin/cat.php | 16 +++++-- shell/bin/cd.php | 9 ++-- shell/bin/chmod.php | 23 +++++----- shell/bin/cp.php | 33 ++++++++++++++ shell/bin/echo.php | 11 +++-- shell/bin/editor.php | 35 ++++++++------- shell/bin/help.php | 18 ++++---- shell/bin/ls.php | 55 ++++++++++++----------- shell/bin/mv.php | 22 +++++++++ shell/bin/pwd.php | 6 ++- shell/bin/rm.php | 10 +++-- shell/bin/stat.php | 123 ++++++++++++++++++++++++++------------------------- shell/bin/whoami.php | 7 ++- 13 files changed, 229 insertions(+), 139 deletions(-) create mode 100644 shell/bin/cp.php create mode 100644 shell/bin/mv.php (limited to 'shell/bin') diff --git a/shell/bin/cat.php b/shell/bin/cat.php index fab9883..8778f22 100644 --- a/shell/bin/cat.php +++ b/shell/bin/cat.php @@ -1,7 +1,15 @@ '; + echo ''; + echo ''."\n"; + echo ''; + echo ''; } - } else { - if (isset($args[1]) && file_exists($args[1])) { - $text = file_get_contents($args[1]); - } else { - $text = ''; - } - echo '
'; - echo ''; - echo ''."\n"; - echo ''; - echo '
'; } } + diff --git a/shell/bin/help.php b/shell/bin/help.php index 95d2641..186c7ea 100644 --- a/shell/bin/help.php +++ b/shell/bin/help.php @@ -1,12 +1,14 @@ 1) { echo $name.":\n"; } - $files = array(); - while (false !== ($file = readdir($dh))) { - $files[]="$file"; +class p_ls extends prog { + public static function main($args, $env) { + if (count($args)<2) { + $args[]='.'; + } + $ret=0; + $me = array_shift($args); + foreach ($args as $name) { + if (file_exists($name)) { + if (is_dir($name)) { + @$dh = opendir($name); + if ($dh === false) { + echo $me.': can not open directory: `'.$name."'\n"; + $ret++; + } else { + if (count($args)>1) { echo $name.":\n"; } + $files = array(); + while (false !== ($file = readdir($dh))) { + $files[]="$file"; + } + sort($files); + echo implode("\n",$files)."\n"; + closedir($dh); } - sort($files); - echo implode("\n",$files)."\n"; - closedir($dh); + } else { + echo $name."\n"; } } else { - echo $name."\n"; + echo $me.': file does not exist: `'.$name."'\n"; + $ret++; } - } else { - echo $me.': file does not exist: `'.$name."'\n"; - $ret++; } + return $ret; } - return $ret; } + diff --git a/shell/bin/mv.php b/shell/bin/mv.php new file mode 100644 index 0000000..8fc35cd --- /dev/null +++ b/shell/bin/mv.php @@ -0,0 +1,22 @@ +2) { + $dest = array_pop($args); + if (!is_dir($dest) { + echo $me.': dest must be a directory: `'.$dest."'\n"; + return 1; + } + foreach ($args as $src) { + rename($src,$dest.'/'.basename($src)); + } + } elseif (count($args)==2) { + rename($args[0],$args[1]); + } else { + echo 'Usage: '.$me." SOURCE [SOURCE2 [SOURCE3 ...]] DEST\n"; + return 1; + } + } +} + diff --git a/shell/bin/pwd.php b/shell/bin/pwd.php index 2b43d00..c5b30c7 100644 --- a/shell/bin/pwd.php +++ b/shell/bin/pwd.php @@ -1,5 +1,7 @@