#!/bin/bash

# First possible way for command substition
CURRENT_DIRECTORY=$(pwd)

# Second possible way for command substition
CURRENT_DIRECTORY=`pwd`
echo "Script is run from: $CURRENT_DIRECTORY"