linux
爱哭的猫ff
在校软件工程学生
展开
-
删除文件中的空行
1 sed '/^$/d' input.txt > output.txt #output file: output.txt2 sed -i '/^$/d' input.txt #output file: input.txt3 awk 'NF > 0' input.txt > output.txt #output file: output.txt4 perl -i.ba原创 2015-10-22 13:54:38 · 394 阅读 · 0 评论 -
error: command 'gcc' failed with exit status 1
解决办法:sudo apt-get install python-dev原创 2016-10-31 17:27:24 · 416 阅读 · 0 评论