summaryrefslogtreecommitdiff
path: root/shell/bin/rm.php
blob: 5eadaff50c1bef6b75edd0d8db9c039c822d2be0 (plain)
1
2
3
4
5
6
7
8
9
10
<?php
class p_rm extends prog {
	public static function main($args, $env) {
		$me = array_shift($args);
		foreach ($args as $file) {
			unlink($file);
		}
	}
}