bash -c "cmd string" 等價於|| /bin/bash cmd string
# 1)、從本地複製到遠程 scp local_file remote_username@remote_ip:remote_folder # 2)、複製目錄命令格式 scp -r local_folder remote_username@remote_ip:remote_folder
# 查看磁盤io iotop -oP # 打包 tar zcf target.tar.gz ./source # ssh密鑰生成 ssh-keygen -t rsa # 端口占用查看 netstat -anp|grep 80 # 查看網絡配置 cat /etc/sysconfig/network-script/ifcfg-eth0 # 查看進程 ps -aux| grep logstash # 查看shell執行過程 sh -x test.sh
# 物理cpu個數 grep 'physical id' /proc/cpuinfo | sort -u # 物理cpu核數 grep 'core id' /proc/cpuinfo | sort -u | wc -l # 邏輯cpu個數 grep 'processor' /proc/cpuinfo | sort -u | wc -l
菜鳥教程-Linux scp命令 <br/>html