|
1 svn上的代碼在本地(編輯器UltraEdit)有一套,在開發機(centos)上有一套,需要本地的代碼修改以后上傳到開發機上
2 不直接在開發機上修改和使用,原因是有多個人都使用同一個開發機,為了保留本地備份
思路:
1 寫一個腳本作為UltraEdit的插件,使得代碼修改后按下制定按鍵就能直接將代碼本地保存后上傳到centos上
2 本地是windows,遠程是linux,文件上傳工具可以使用pscp.exe,腳本語言使用php或者Python
3 本地必須安裝php,不需要安裝數據庫和apache
4 在php中起一個進程調用pscp.exe, 解析路徑等邏輯放在php中
步驟:
1 UltaEdit中在工具配置中設定好腳本
php "C:/Users/nickyjf/Desktop/mesh/Tools/syncFile/sync142.php" %p%n%e
后面的%p%n%e是當前編輯文件的絕對路徑,作為參數傳入synv142.php中
復制代碼 代碼如下:
<?php
//插件,將windwos文件同步到linux上
//php "rsync142.php" %p%n%e
//valid argv
//testCode
/*
$argv = array(
"rsync142.php",
"E://SVN//test//www//include//ggg//test//DTest.php",
);
*/
if(count($argv) == 2)
{
$sFilePath = $argv[1];
$sServerName = "192.168.10.142";
$sServerUserName = "name";
$sServerPassword = "password";
$sServerPath = sGetServerPath($sFilePath);
$realPath = sprintf("%s@%s:/%s", $sServerUserName, $sServerName, $sServerPath);
try
{
$cmd = sprintf("pscp.exe -pw %s %s %s", $sServerPassword, $sFilePath, $realPath);
echo $cmd."/n";
system($cmd);
}
catch(Exception $e)
{
print_r($e);exit;
}
}
function sGetServerPath($sWindowsPath)
{
$ret = "";
$paths = explode("http://", $sWindowsPath);
if($startKey = array_search("www", $paths))
{
$ret = "test/";
for($i=$startKey+1; $i<count($paths); $i++)
{
$ret .= $paths[$i] . "/";
}
$ret = trim($ret, "/");
}
return $ret;
}
?>
3 將pscp.exe放在sync142同級目錄下


php技術:PHP寫UltraEdit插件腳本實現方法,轉載需保留來源!
鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。