kscope,scp的用法

1:kscope工具,用于查看代码。
》远程拷贝kscope到本地:scp -r [email protected]:~/kscope.tar.gz ./
》安装kscope: sudo apt-get install kscope
》启动kscope时可能会报错,并拒绝启动。可能没有安装ssh,此时执行:sudo apt-get install ssh 。

2:scp用法
》本地上传文件至服务器:
scp 本地文件名  远程用户名@远程IP地址:路径/新文件名;
例如:scp A.sql [email protected]:www/A_new.sql;

》从远程服务器下载文件至本地
scp 远程用户名@远程IP地址/新文件名 本地文件名
例如:scp [email protected]:www/A.sql A_new.sql;

3:bluetooth
GAP, SDP
HSP/HFP, OPP, A2DP, PBAP
BPP, BIP

4:UriMatcher.addURI(String authority, String path, int code):Add a URI to match, and the code to return when this URI is matched. URI nodes may be exact match string, the token "*" that matches any text, or the token "#" that matches only numbers.
authority the authority to match
path the path to match. * may be used as a wild card for any text, and # may be used as a wild card for numbers.
code the code that is returned when a URI is matched against the given components. Must be positive.

你可能感兴趣的:(sql,ssh)