IT tips bash

提供:onayami

自分のファイル名を取得し、拡張子を除くロジック

#!/bin/bash
filename=${BASH_SOURCE[0]}
tmp=`basename ${filename} .sh`
echo $tmp