时间:2021-05-22
Linux 环境下的 hosts 一键部署脚本,由 @lstoars 贡献; @fluviusmagnus 提供增强版本。
官方网站:https://github.com/racaljk/hosts/tree/master/hosts_tools
#!/bin/sh## script_tool_for_linux## Use command: `sudo sh script_tool_for_linux.sh` or# `su -c 'sh script_tool_for_linux.sh'`# to update your hosts file.## WARNING: the script CAN NOT replace others' hosts rules.# If you have hosts rules provided by others, you may get conflict.#if [ `id -u` -eq 0 ]; then curl -fLo /tmp/fetchedhosts 'https://raw.githubusercontent.com/racaljk/hosts/master/hosts' sed -i '/# Copyright (c) 2014/,/# Modified hosts end/d' /etc/hosts sed -i "s/localhost/`hostname`/g" /tmp/fetchedhosts cat /tmp/fetchedhosts >> /etc/hosts rm -f /tmp/fetchedhosts echo 'Success.'else echo 'Permission denied, are you root?'fi声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
Linux下IP设置脚本的实例及遇到问题解决办法背景一个Javaweb项目有一个功能是IP修改,Linux的IP修改脚本如下:#!/bin/bash#usein
Linux环境变量~/.bash_profile&&~/.bashrc用户登陆Linux操作系统的时候,"/etc/profile","~/.bash_prof
在Windows下写了一个shell脚本,上传到Linux下执行时报错:复制代码代码如下:[root@localhosttest]#./test.sh-bash
在windows系统下写的python脚本,在linux下赋予权限chmod+xxxx.py以后,执行./xxx.py运行提示:bash:/usr/bin/au
在Linux下,Bash的地位无可忽视,日常中涉及到Linux下的管理与操作基本都是在Bash中进行,因此,为了提高Linux下工作效率,自然而然的就变成了如何