summaryrefslogtreecommitdiff
path: root/shell/bin/cd.php
blob: 3679e88a6531d6a4ed4d74292e5957e7541683b9 (plain)
1
2
3
4
5
<?php
function main($args) {
	@$dir = $args[1];
	return php_chdir($dir);
}