Skip to content

Instantly share code, notes, and snippets.

@woodRock
Created March 10, 2021 00:25
Show Gist options
  • Save woodRock/d0118103047d9f5599c2e346a88d3a78 to your computer and use it in GitHub Desktop.
Save woodRock/d0118103047d9f5599c2e346a88d3a78 to your computer and use it in GitHub Desktop.
Take a filename as input for a script.
DIR=`pwd`
FILE=$1
if grep -q '\.' "$FILE"; then
FILE=`echo "${FILE}" | awk '{ print substr ($0, 3 ) }'`
fi
FULL_PATH="${DIR}/${FILE}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment