# "/home/nanikata/gentoorap"/etc/profile: login shell setup # # That this file is used by any Bourne-shell derivative to setup the # environment for login shells. # # Load environment settings from profile.env, which is created by # env-update from the files in "/home/nanikata/gentoorap"/etc/env.d if [ -e "/home/nanikata/gentoorap"/etc/profile.env ] ; then . "/home/nanikata/gentoorap"/etc/profile.env fi # You should override these in your ~/.bashrc (or equivalent) for per-user # settings. For system defaults, you can add a new file in "/home/nanikata/gentoorap"/etc/profile.d/. export EDITOR=${EDITOR:-"/home/nanikata/gentoorap"/bin/nano} export PAGER=${PAGER:-"/home/nanikata/gentoorap"/usr/bin/less} # 077 would be more secure, but 022 is generally quite realistic umask 022 # Set up PATH depending on whether we're root or a normal user. # There's no real reason to exclude sbin paths from the normal user, # but it can make tab-completion easier when they aren't in the # user's PATH to pollute the executable namespace. if [ "${EUID-}" = "0" ] || [ "${USER-}" = "root" ] ; then PATH="/home/nanikata/gentoorap/usr/local/sbin:/home/nanikata/gentoorap/usr/local/bin:/home/nanikata/gentoorap/usr/sbin:/home/nanikata/gentoorap/usr/bin:/home/nanikata/gentoorap/sbin:/home/nanikata/gentoorap/bin${ROOTPATH:+:}${ROOTPATH-}:/usr/sbin:/sbin:/usr/bin:/bin" else PATH="/home/nanikata/gentoorap/usr/local/bin:/home/nanikata/gentoorap/usr/bin:/home/nanikata/gentoorap/bin${PATH:+:}${PATH-}:/usr/bin:/bin" fi export PATH unset ROOTPATH if [ -n "${BASH_VERSION-}" ] ; then # Newer bash ebuilds include "/home/nanikata/gentoorap"/etc/bash/bashrc which will setup PS1 # including color. We leave out color here because not all # terminals support it. if [ -f "/home/nanikata/gentoorap"/etc/bash/bashrc ] ; then # Bash login shells run only "/home/nanikata/gentoorap"/etc/profile # Bash non-login shells run only "/home/nanikata/gentoorap"/etc/bash/bashrc # Since we want to run "/home/nanikata/gentoorap"/etc/bash/bashrc regardless, we source it # from here. It is unfortunate that there is no way to do # this *after* the user's .bash_profile runs (without putting # it in the user's dot-files), but it shouldn't make any # difference. . "/home/nanikata/gentoorap"/etc/bash/bashrc else PS1='\u@\h \w \$ ' fi else # Setup a bland default prompt. Since this prompt should be useable # on color and non-color terminals, as well as shells that don't # understand sequences such as \h, don't put anything special in it. PS1="${USER:-$(whoami 2>/dev/null)}@$(uname -n 2>/dev/null) \$ " fi for sh in "/home/nanikata/gentoorap"/etc/profile.d/*.sh ; do [ -r "$sh" ] && . "$sh" done unset sh