Linux环境变量配置

1、直接用export命令:  

export PATH=$PATH://protobuf-master/src 

2、修改profile文件:  

vi /etc/profile  

在里面加入:  

export PATH="$PATH://protobuf-master/src"  

让环境变量立即生效需要执行如下命令:  

source /etc/profile  

3.从远程复制文件到本地、从远程复制文件到本地

scp -P 4588 remotehost:/usr/local/test.txt /home/administrator(远程复制到本地)
scp local_file remote_username@remote_ip:remote_folder(本地复制到远程)

你可能感兴趣的:(Linux)