随笔分类 - Tech / Linux
摘要:文件描述符及重定向 echo "This is a sample text 1" > temp.txt # 文本重定向,截断文件的方式 # 意思是在把echo命令的输出写入文件前,temp.txt文件会被清空 cat temp.txt echo " " echo "This is a sample
阅读全文
摘要:配置Python远程开发环境前提 配置步骤 1.windows 10 开发机配置 win10 1809后支持ssh 2.Linux服务配置 将window开发机上生成的id_rsa.pub公钥文件内容追加到Linux上 /root/.ssh/authorized_keys 现在实现了windows连
阅读全文
摘要:To install requests module on Debian/Ubuntu: $ sudo apt-get install python-requests pycharm配置版本 file->settings->Project->Project Interpreter 点击右边小齿轮->
阅读全文