bashHow to extract file extension
filename=/tmp/test.php
extension="${filename##*.}"
ctrl + c
"${filename##*.}" extracts file extension. Use |
More of Bash
- How to check if a string starts with a specific value
- Binet's Formula in bash
- Check if file exists
- How to extract file name
- How to assign an output of a command to a variable
- Quickly create big file
- How to check if a command exists
- Urlencode string in bash
- Check if directory exists
See more codes...