标签:android style blog http ar color os 使用 sp
有些手机没有scp命令行,考虑到我们在脚本中常常需要使用scp来复制文件,于是写个脚本代替scp:
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
标签:android style blog http ar color os 使用 sp
原文地址:http://www.cnblogs.com/scue/p/4138139.html