爱咋咋地
发布时间:2024-05-27 15:45:48
最近发现不知为何在shell的提示符的最前面莫名其妙的多出了一个@。一开始懒得管他,以为什么时候把PS1给改错了。今天看了一下PS1并没有错。这就很奇怪。export CFLAGS=“-g -O0"export LDFLAGS="-g -O0"configure && make一遍过,不错不错。不用安装,直接就对当前目录的bash进行gdb。过程繁琐且.........【阅读全文】
发布时间:2023-12-06 20:09:09
有两种方法:1. bash |tee ./tee_record.txt2.script -B ./script_record.txt -T ./script_timing.txt两种方法生成的文件中都包含有大量的控制字符,这种格式叫做 typescript使用第二种方法记录的话,可以用scriptreplay -B ./script_record.txt -T ./script_timing.txt来重新播放整个记录的过程。就像看一个动画。.........【阅读全文】
发布时间:2023-12-06 09:28:01
转自:h_t_t_p_s://gist.github.com/tuxfight3r/60051ac67c5f0445efeeBash ShortcutsMovingcommanddescriptionctrl + aGoto BEGINNING of command linectrl + eGoto END of command linectrl + bmove back one characterctrl + fmove forward one characteralt + fmove cursor FORWARD one wordalt + bmo.........【阅读全文】
发布时间:2023-11-27 10:35:43
简单的解决方法,在views.py中导入from django.views.decorators.csrf import csrf_exempt,csrf_protect然后在接收POST的方法前添加修饰@csrf_exempt 如下:@csrf_exemptdef save(request): return HttpResponse(content)......【阅读全文】
发布时间:2023-11-07 10:35:03
总是记不住,写一下吧Bashrc is executed each time you open a new terminal window, while bash_profile is executed only once when you log in to your account. ......【阅读全文】