
shell
dapeng1994
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
shell命令中三个箭头、两个箭头、一个箭头的区别
shell命令中<<</<</<的区别 <<<代表一个字符串作为前面命令的标准输入 $ cat <<< 'hi there' hi there <<代表一个“here document”的开始 $ cat <<EOF >hi >there &原创 2018-11-20 22:48:40 · 7896 阅读 · 0 评论 -
如何用shell脚本安装mysql,避免输入密码的过程
如何用shell脚本安装mysql,避免输入密码的过程 sudo debconf-set-selections <<< 'mysql-server mysql-server/root_password password your_password' sudo debconf-set-selections <<< 'mysql-server mysql-serve...原创 2018-11-20 23:08:02 · 1757 阅读 · 1 评论