LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Fedora (https://www.linuxquestions.org/questions/fedora-35/)
-   -   accidentally deleted /etc/profile (https://www.linuxquestions.org/questions/fedora-35/accidentally-deleted-etc-profile-118518/)

tanbetien 11-21-2003 09:50 AM

accidentally deleted /etc/profile
 
Hi,
Can anyone help posting the content of the file /etc/profile, so that I can make a new one. Or, if you know where to download the file in the internet, please help to let me know. Thanks
I'm using Fedora

BigNate 11-21-2003 04:15 PM

Re: accidentally deleted /etc/profile
 
Becarful with the rm command :)

I am not entirely sure this will work , but don't let it be said that BigNate won't try to help :)

EDIT: forgot to disable smilies ;)

# /etc/profile

# System wide environment and startup programs, for login setup
# Functions and aliases go in /etc/bashrc

pathmunge () {
if ! echo $PATH | /bin/egrep -q "(^|:)$1($|:)" ; then
if [ "$2" = "after" ] ; then
PATH=$PATH:$1
else
PATH=$1:$PATH
fi
fi
}

# Path manipulation
if [ `id -u` = 0 ]; then
pathmunge /sbin
pathmunge /usr/sbin
pathmunge /usr/local/sbin
fi

pathmunge /usr/X11R6/bin after

unset pathmunge

# No core files by default
ulimit -S -c 0 > /dev/null 2>&1

USER="`id -un`"
LOGNAME=$USER
MAIL="/var/spool/mail/$USER"

HOSTNAME=`/bin/hostname`
HISTSIZE=1000

if [ -z "$INPUTRC" -a ! -f "$HOME/.inputrc" ]; then
INPUTRC=/etc/inputrc
fi

export PATH USER LOGNAME MAIL HOSTNAME HISTSIZE INPUTRC

for i in /etc/profile.d/*.sh ; do
if [ -r "$i" ]; then
. $i
fi
done

unset i

tanbetien 11-21-2003 09:42 PM

Thanks a lot BigNate , :)


All times are GMT -5. The time now is 06:47 PM.