
Shell
Linux脚本
生活不需要眼泪
学习成长点滴记录,只为提升
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
加密与编码
base64编码 在线工具: https://tool.oschina.net/encrypt?type=3 注意:要编码的字符串用“” echo "test" | base64 dGVzdAo= echo "dGVzdAo=" | base64 -d test tar命令加密 tar -zcvf - folder | openssl des3 -salt -k passwd | dd of=folder.des3 执行完上面的命令后将得到 foler.des3 文件,把 passwd 替换成实际的密原创 2020-12-13 15:49:59 · 140 阅读 · 0 评论 -
Aeye_apl 环境搭建
pip源修改 mkdir ~/.pip vim ~/.pip/pip.conf 内容如下:豆瓣源 [global] index-url = http://pypi.douban.com/simple trusted-host = pypi.douban.com 内容如下:清华源 [global] timeout = 6000 index-url = http://mirrors.aliyun.com/pypi/simple/ trusted-host = mirrors.aliyun.com apt-原创 2020-12-13 10:16:49 · 339 阅读 · 0 评论 -
好用命令汇总
批量修改文件名 rename -v 's/imx334/newsensor/' * sencfg_imx334_1920x1080_Raw12_30Hz_4L_1188Mbps.h renamed as sencfg_newsensor_1920x1080_Raw12_30Hz_4L_1188Mbps.h senops_imx334.h renamed as senops_newsensor.h原创 2020-07-17 17:33:13 · 185 阅读 · 0 评论 -
Linux命令行显示格式PS1 串口换行
韦老师 解决串口换行问题 执行这句话就可以: PS1=’[\e[0;32m][\u@\h:\w]$ [\e[m]’ 也可以修改/etc/profile,把里面的 #PS1=’\e[0;32m[\u@\h:\w]$ \e[m’ 改为: PS1=’[\e[0;32m][\u@\h:\w]$ [\e[m]’ PS1格式: https://blog.youkuaiyun.com/qq_39023220/article/details/82828044 PS1导致换行问题的解决: https://unix.stackexchan原创 2020-05-18 22:05:18 · 1008 阅读 · 0 评论