repeat83

assoc

Jan 16th, 2018
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.21 KB | None | 0 0
  1. # Hello World Program in Bash Shell
  2. filename="/mnt/mmc/music.this.mp5"
  3. extension="${filename##*.}"
  4. echo $filename
  5. echo $extension
  6.  
  7. case "$extension" in
  8. mp3|mp4) echo "asdasd";;
  9. mp5) echo "123123";;
  10. esac
Advertisement
Add Comment
Please, Sign In to add comment