Skip to content

Instantly share code, notes, and snippets.

View shoota's full-sized avatar
🍖
Greedy Dog

Shoota Kumano shoota

🍖
Greedy Dog
View GitHub Profile
@shoota
shoota / file_extension.sh
Created September 2, 2013 12:53
ファイル拡張子を取得する
#!/bin/bash
## example path
path="/var/www/html/index.html"
echo "path: $path"
## filename
basename=${path##*/}
echo "basename: $basename"