Skip to content

Instantly share code, notes, and snippets.

@marhan
Created April 27, 2017 05:33
Show Gist options
  • Save marhan/82aca093ac8e8b8724270f00df4320ab to your computer and use it in GitHub Desktop.
Save marhan/82aca093ac8e8b8724270f00df4320ab to your computer and use it in GitHub Desktop.
Extract file name and its extension from absolut file path
#!/bin/bash
full_file_path="/PATH/test.csv"
# complete file name without path
file_name="${full_file_path##*/}"
# file name without extension
file_name_part="${full_file_path%.*}"
# extension of file
file_extension="${full_file_path##*.}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment