Created
March 10, 2021 00:25
-
-
Save woodRock/d0118103047d9f5599c2e346a88d3a78 to your computer and use it in GitHub Desktop.
Take a filename as input for a script.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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