Skip to content

pameeela/profile.d

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

profile.d

Useful things that my command line has

Instructions

  • Clone the repo into your /etc directory
  • Add the following to your ~/.profile or ~/.bashrc depending on OS
if [ -d /etc/profile.d ]; then
  for file in /etc/profile.d/*
    do
      if [[ $file == *rc ]] ; then
        echo "Loading $file"
        . $file
      fi
    done
fi
  • Add in any additional functionality you'd like by adding files to your /etc/profile.d directory
  • Ensure the files you add end in rc to get picked up by the auto-loader

About

Useful things that my command line has

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published