# Some General Linux Tips

# Add folder to the path

export PATH=$PATH:/srv/scripts

# Symbolic Links

Example link

ln -s /srv/scripts/service-menu /usr/bin/sm

# ln for link
# -s for symbolic
# Destination (File you are linking to)
# Source (File or link to be created to link to Destination)