爱咋咋地
发布时间:2023-12-14 21:30:22
主要的命令bc,这是一个功能强大的计算器。假设test.txt里面内容如下:11223344现在要对这一列数字求和,可以使用paste命令进行预处理paste -sd ./test.txt|bc如果test.txt里面还有空行或者其他无效行11223344先使用sed命令删除空行和无用的行,再使用上面的命令求和:sed -e '/^$/d' ./test.txt |pas.........【阅读全文】
发布时间: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. ......
发布时间: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查看安装的软件使用.........