• 我不去想是否能够成功
    既然选择了远方 便只顾风雨兼程

    我不去想能否赢得爱情
    既然钟情于玫瑰 就勇敢地吐露真诚

    我不去想身后会不会袭来寒风冷雨
    既然目标是地平线 留给世界的只能是背影

  • 运动一周瘦不下来不要紧,因为运动十周也瘦不下来的。

什么时候,能把我脑子里的钱,提现就好了。

文章列表

1-3条,共3条数据.

vscode如何调试bash脚本

vscode如何调试bash脚本

Written by 未知 on 2020年9月10日 19:09:34. Posted in 编程技术

以前写linux bash脚本,常常都是瞎蒙的状态。开发流程都是:先去google搜,然后去抄一段代码,然后肉眼review,然后运行观察效果。根据运行结果来看脚本是否正确。如果再高级一点就是辅助详细的echo 进行log输出。 于是不禁反问?可有调试bash脚本的工具和方法,这样用调试的方式去运行脚本,逐步的看每一个语句的运行结果,岂不是很爽? 结果还真找到了。在vscode中搜索插件bash debug。即可。 PS: win10下面需要安装wsl,然后在vscode里面安装一个wsl...



如何修复:git bash WARNING: terminal is not fully functional

如何修复:git bash WARNING: terminal is not fully functional

Written by 未知 on 2020年3月27日 21:03:00. Posted in 编程技术

For Git Bash, this can be fixed by adding the following line to ~/.bashrc: export TERM=cygwin -or- export TERM=msys The first seems to be the original by git for wind...



log for linux bash command

log for linux bash command

Written by 未知 on 2017年3月17日 15:03:12. Posted in 编程技术

Unless a command has output or logging already configured, rc.local commands will not log anywhere. If you want to see logs for specific commands, try redirecting the stdout and stderr for rc.localto somewhere you can check. Try adding this to...