sh 强制在Ubuntu和其他Linux发行版上启用颜色提示的脚本。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 强制在Ubuntu和其他Linux发行版上启用颜色提示的脚本。相关的知识,希望对你有一定的参考价值。

#!/bin/bash

#Set Default user's color prompt

# Get the path for the .bashrc file from the prompt or set it as being in the users home dir.
BASHRC="~/.bashrc"

# Use sed to remove the comment from the force color line in the .bashrc file.
sed -i 's/#force_color_prompt=yes/force_color_prompt=yes/g' $BASHRC

# BONUS: Uncomment to change the default color of the prompt.
#sed -i 's/1;32m/1;31m/g'

# Reload the .bashrc file
source BASHRC

#Set Root's color prompt
# Get the path for the .bashrc file from the prompt or set it as being in the users home dir.
BASHRC="root/.bashrc"

# Use sed to remove the comment from the force color line in the .bashrc file.
sudo sed -i 's/#force_color_prompt=yes/force_color_prompt=yes/g' $BASHRC

# BONUS: Uncomment to change the default color of the prompt.
sudo sed -i 's/1;32m/1;31m/g'

以上是关于sh 强制在Ubuntu和其他Linux发行版上启用颜色提示的脚本。的主要内容,如果未能解决你的问题,请参考以下文章

我的朋友无法在他的 linux 发行版上运行我的 openGL 程序

sh 它可以在10行中完成,但结果并不是很好,因为它不会在许多发行版上运行

Firefox迎来Snap生态应用

旧发行版上的二进制兼容性(使用 C++11)

Linux 发行版上的 windeployqt.exe

在当前 Linux 发行版上打包 C++11 软件是不是安全?