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