適合unixlikeos系統之間linux
#上傳 scp [-r] /locapath/localfile username@target_linux:/remotepath/remotefile # 下載 scp [-r] username@target_linux:/remotepath/remotefile /locapath/localfile
適合windows與unixlike系統之間git
#上傳文件sz #下載文件rz
適合任意系統與Windows系統之間github
開啓共享 net share sharename=sharepath 使用共享 \\target-ip
#導入憑證 net use z: \\target\\C$ #或者使用用戶名密碼 net use z: \\IP\c$ "密碼" /user:"用戶名" #使用IPC,導入憑證後無需使用用戶名、密碼 net use \\IP\ipc$ "密碼" /user:"用戶名" (一樣有3個空格)
wget ftp://xxx.xx.xxx.xxx/xxx/xxx/xxx.xxx curl http://xx.xxx.xxx.xxx/xxx/xxx/xxx git clone https://github.com/xxxx/xxxxx.git
ftp xxxxxxx username&password put xxxx get xxxx mget xxxx
bitsadmin /transfer n http://download.sysinternals.com/files/PSTools.zip C:\test\update\PSTools.zip
#powershell 下載 powershell (new-object System.Net.WebClient).DownloadFile( 'http://xxx.xxx.xxx.xxx/xxx.exe','C:\test\update\xxx.exe')