- 论坛徽章:
- 0
|
vimssh插件
command -nargs=* Func :call TFunc(<f-args>)
function! TFunc(...)
"这里是用来传当前正在编辑的文件
let s:localFuncDir = "D:/hr/www/"
let s:remoteFuncDir = "/home/test/"
if a:0 == 0
let s:localFuncDirLen = strlen(s:localFuncDir)
let s:localDir = getcwd()
let s:localDir = substitute(s:localDir , "\\ , "/" , "g")
let s:workDir = strpart(s:localDir , s:localFuncDirLen)
let s:filename = bufname("%")
let s:remoteDir = s:remoteFuncDir . s:workDir
let s:scpCmd = "pscp -pw pwdpath " . s:localDir . "/" . s:filename . " andrew@192.168.1.1:" . s:remoteDir . "/" . s:filename
echo s:scpCmd
echo system(s:scpCmd)
echo system("D:/hr/www/ " .s:workDir . "/". s:filename)
else
"这里是用来上传手动指定的多个文件或目录
let index = 1
while index <= a:0
let s:scpCmd = "pscp -pw pwdpath "
if(isdirectory(s:localFuncDir . a:{index}))
let s:scpCmd .= "-r "
if(strridx(a:{index} , "/"))
let s:scpCmd .= s:localFuncDir . a:{index} . " andrew@192.168.1.1:" . s:remoteFuncDir . strpart(a:{index} , 0 , strridx(a:{index} , "/"))
else
let s:scpCmd .= s:localFuncDir . a:{index} . " andrew@192.168.1.1:" . s:remoteFuncDir
endif
else
let s:scpCmd .= s:localFuncDir . a:{index} . "andrew@192.168.1.1:" . s:remoteFuncDir . a:{index}
endif
echo s:scpCmd
echo system(s:scpCmd)
echo system("D:/hr/www/ " . a:{index})
let index = index +1
endwhile
endif
endfunction
二 辅助上传bat
@echo off
echo cd /home/test;./rsync_test %1 > d:\aa\cc
putty -pw pwdpath -m d:\aa\cc andrew@192.168.1.1 |
|