Ubuntu、Linux Mint一键安装Chrome浏览器的Shell脚本分享


把下面的脚本保存为xxx.sh,然后 sudo sh xxx.sh

wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -

sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'

sudo apt-get update

#下面是稳定版

#sudo apt-get -y install google-chrome-stable

#下面是beta版

sudo apt-get -y install google-chrome-beta

#下面是不稳定版

#sudo apt-get -y install google-chrome-unstable

Shell脚本实现删除邮件队列
最近遇到了一个麻烦事:机器上邮件队列里老是被塞满,但是又不知道是什么地方发邮件写入的,十分蛋疼,没办法,只有临时处理一下了,写了个删

expect实现批量修改linux密码脚本分享
最近对linux批量执行的脚本很感兴趣,在网上到处找有关expect批量执行脚本,今天就给大家共享一个批量修改密码的脚本.脚本内容:#!/usr/bin/expectif{$argc2}{send

shell实现tr删除替换详解
tr(translate缩写)主要用于删除文件中的控制字符,或进行字符转换。语法:tr[?c/d/s/t][SET1][SET2]#SET1:字符集1;SET2:字符集2-c:complement,用SET2替换除SET1