gstreamer1/gst1-plugins-ugly: bump version to 1.10.2
[buildroot-gz.git] / system / skeleton / etc / profile
blob3a97427fdfa809a4a508d5a4bda3711e85dde645
1 export PATH=/bin:/sbin:/usr/bin:/usr/sbin
3 if [ "$PS1" ]; then
4         if [ "`id -u`" -eq 0 ]; then
5                 export PS1='# '
6         else
7                 export PS1='$ '
8         fi
9 fi
11 export PAGER='/bin/more '
12 export EDITOR='/bin/vi'
14 # Source configuration files from /etc/profile.d
15 for i in /etc/profile.d/*.sh ; do
16         if [ -r "$i" ]; then
17                 . $i
18         fi
19         unset i
20 done