随笔分类 - Linux
摘要:上传: scp myfile.txt username@192.168.1.1:/homw/下载: scp username@192.168.1.5:/home/myfile.txt /home/下载整个目录: scp -r root@192.168.1.1:/home/explorer/pytho
阅读全文
摘要:命令: du -sh /* df -h
阅读全文
摘要:svn提交所有新增文件可以用:svn st | awk '{if ( $1 == "?") { print $2}}' | xargs svn add svn提交所有删除增文件可以用:svn st | awk '{if ( $1 == "!") { print $2}}' | xargs svn d
阅读全文