Linux: pathmunge Command in Shell Script

Q. I see pathmunge used in few scripts under Red Hat Enterprise Linux. Can you explain the use of pathmunge under RHEL / CentOS / Fedora Linux?

A. Red Hat, CentOS, and Fedora Linux has a pathmunge function defined in /etc/profile file. It will add the directories one by one to the default PATH for the root user.

pathmunge() function is defined in /etc/profile

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

Path manipulation done using pathmunge:

# Path manipulation
if [ "$EUID" = "0" ]; then
        pathmunge /sbin
        pathmunge /usr/sbin
        pathmunge /usr/local/sbin
fi

As long as you are using Red Hat or CentOS / Fedora Linux, you can use pathmunge. It is best to avoid this function if you need run a shell script on diffrent distributions. I recommend using export bash command for modifying PATH variable.

Want to read Linux tips and tricks, but don't have time to check our blog everyday? Subscribe to our daily email newsletter to make sure you don't miss a single tip/tricks. Subscribe to our weekly newsletter here!

{ 2 comments… read them below or add one }

1 Patrick Horgan 08.13.08 at 9:43 pm

It would have been nice if you explained what the script does! pathmunge adds something to the path only if it wasn’t already there. So if your path contains:
/bin:/usr/bin
pathmunge /usr/bin
will do nothing.
pathmunge /sbin
will result in a path a path containing:
/sbin:/bin:/usr/bin
if instead, you’d said pathmunge /sbin after, the
result would have been:
/bin:/usr/bin:/sbin
For portability, if you need something like this, just make it a part of your script.

2 dt 08.14.08 at 4:14 am

I agree, you didn’t really answer much of the question at all. Also, it is not ‘best to avoid this function’ as you state. What is best is follow Patrick’s advice and just copy it directly into your own shell script.

Leave a Comment

You can use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Tagged as: , , , , , , , , , , ,

Previous post: FreeBSD Find Out Network Card / Port Speed

Next post: Linux: How To Copy and Paste From the Command Line