码迷,mamicode.com
首页 > 移动开发 > 详细

〖Android〗scp替换脚本

时间:2014-12-02 18:57:10      阅读:286      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   http   ar   color   os   使用   sp   

有些手机没有scp命令行,考虑到我们在脚本中常常需要使用scp来复制文件,于是写个脚本代替scp:

 

bubuko.com,布布扣
scp_from(){
    rfile=${1##*:}
    remote=${1%%:*}
    lfile=$2
    echo "cat $lfile | ssh $remote \"cat >>$rfile\""
    cat $lfile | ssh $remote "cat >>$rfile"
}

scp_to(){
    lfile=$1
    rfile=${2##*:}
    remote=${2%%:*}
    echo "cat $lfile | ssh $remote \"cat >>$rfile\""
    cat $lfile | ssh $remote "cat >>$rfile"
}

scp(){
    if echo $1|grep -q :; then
        scp_from "$@"
    else
        scp_to "$@"
    fi
}

# 举例:
scp aa.sh work:/tmp/bb.sh
scp work:/tmp/bb.sh aa.sh
View Code

 

〖Android〗scp替换脚本

标签:android   style   blog   http   ar   color   os   使用   sp   

原文地址:http://www.cnblogs.com/scue/p/4138139.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!