这两个参数都要打开:
diff -w -B ./file1 ./file2
- -B, --ignore-blank-lines ignore changes where lines are all blank
- -w, --ignore-all-space ignore all white space
[......]
这两个参数都要打开:
diff -w -B ./file1 ./file2
[......]
1 移除旧版
sudo apt-get remove docker docker-engine docker.io containerd runc
2 设置repo
sudo apt-get install ca-certificates curl gnupg lsb-release
sudo mkdir -m 0755 -p /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/ubuntu/gpg |[......]
find . -type f -name "*.c" \( -exec grep -q "A" {} \; ! -exec grep -q "B" {} \; \) -print
[......]
安装
sudo apt-get install lm-sensors psensor
启动
psensor
配置都在”Sensor Preferences“、"Preferences"中完成。
显示在托盘:”Sensor Preferences“,找到指标,Display sensor in the label
开机启动:”Preferences“,"Startup","Launch on session startup"
注意nvme的温度名字可能不同,例如"Comp[......]
cat url-list | parallel -j8 wget {}
parallel这个命令多数发行版都有,如果没有安一下。
提醒:如果发现wget失败,后面多了一个%0D的话,用dos2unix做一下转化。[......]