⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 move.cgi

📁 Unix下基于Web的管理工具
💻 CGI
字号:
#!/usr/local/bin/perl# move.cgi# Move some file or directoryrequire './file-lib.pl';&ReadParse();&switch_acl_uid();print "Content-type: text/plain\n\n";unlink($in{'to'}); # in case we are moving a directoryif (!&can_access($in{'to'})) {	print &text('move_eto', $in{'to'}),"\n";	exit;	}if (!&can_access($in{'from'})) {	print &text('move_efrom', $in{'from'}),"\n";	exit;	}$out = `mv "$in{'from'}" "$in{'to'}" 2>&1`;if ($?) {	print $out,"\n";	}else {	print "\n";	print &file_info_line($in{'to'}),"\n";	}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -