爱咋咋地
发布时间: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-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. ......【阅读全文】
发布时间:2023-11-05 01:54:20
今天发现系统空间不足,发现好几个目录过分的大在/var目录下面有:/var/spool/abrt/使用如下命令清理:systemctl stop abrtdsystemctl stop abrt-oopsabrt-cli rm /var/spool/abrt/*systemctl start abrtdsystemctl start abrt-oops/var/lib/flatpak使用如下命令清理:flatpak list查看安装的软件使用.........【阅读全文】