Skip to content

Instantly share code, notes, and snippets.

@skihero
Created July 6, 2014 13:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skihero/a81890b0cdac13e2a634 to your computer and use it in GitHub Desktop.
Save skihero/a81890b0cdac13e2a634 to your computer and use it in GitHub Desktop.
iterate *.sh files
for sh in /etc/profile.d/*.sh ; do
[ -r "$sh" ] && . "$sh"
done
unset sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment