我是靠谱客的博主 安静裙子,最近开发中收集的这篇文章主要介绍误删了home里.bashrc等文件后.....,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

误删了.bashrc  history等等等等文件后。

ll 失灵了.....ll command not found

各种 字体颜色也没有了。

于是拷贝了一份.bashrc回来。source ~./bashrc后

配置生效。

 

但是还误删了.profile 这就导致每天我都要source啊!!

你可以用etc/skel/..... 里面找出来.profile文件~ 放在当前用户目录。

如果你找不到。那么内容是以下这样子的。。复制粘贴吧 兄dei~

 

 

# ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.

# the default umask is set in /etc/profile; for setting the umask
# for ssh logins, install and configure the libpam-umask package.
#umask 022

# if running bash
if [ -n "$BASH_VERSION" ]; then
    # include .bashrc if it exists
    if [ -f "$HOME/.bashrc" ]; then
    . "$HOME/.bashrc"
    fi
fi

# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
    PATH="$HOME/bin:$PATH"
fi
 

最后

以上就是安静裙子为你收集整理的误删了home里.bashrc等文件后.....的全部内容,希望文章能够帮你解决误删了home里.bashrc等文件后.....所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(52)

评论列表共有 0 条评论

立即
投稿
返回
顶部