#!/bin/bash
# save as add2path.sh
# add the currently active directory to the path variable
# assignment only active in the current session
PATH=$PATH":"$(pwd)

