Shell gets the file name extension

Source: Internet
Author: User
Tags cos
basename example.tar.a.b.c.gz. c.gz
# => example.tar.a.b file= "
 
example.tar.gz"
 
echo "${file%%.*}"     Fetch Head   Example 
# => example
 
echo "${file%.*}"      go tail   example.tar.a.b.c
# => Example.tar
 
echo "${file#*.}"      Go head   tar.a.b.c.gz
# => tar.gz
 
echo "${file##*.}"     Take the tail   gz
# => gz
 
# in Bash you can write
filename=$ (basename "$fullfile")   
extension= "${filename##*.}"
filename= "${filename%.*}"
<pre name= "code" class= "python" >eg  Fullfile=/mnt/cos2/venus_gram/rom/leadcore_haige/leadcore_haige_ Autotag201608311742/cos-rom_1.2.-leadcore_haige-201608311742.zip

 Then 
filename=$ (basename "$fullfile")   

echo "$filename"

Cos-rom_1.2.-leadcore_haige-201608311742.zip


Extension= "${filename##*.}"
echo "$extension"


Zip


Filename= "${filename%.*}"
cos-rom_1.2.-leadcore_haige-201608311742


Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.