コミケ告知

サークル活動の詳細は circle タグの記事へ。
2015年4月8日水曜日

mvしてln -sするシェル関数を用意した

ファイルを移動して、移動先から元の位置にシンボリックリンクを張りたい。そんな場面がたまにあります。ぴったり合う物をすぐには見つけられなかったので、シェルスクリプトの練習も兼ねて作りました。
function mvln() {
function __mvln() {
local opts=$1
local src=$2
local dst=$3
if [ -d $dst ]; then
# When dst is dir, dst_file must be dir/filename
local file=${src##*/}
mv $opts -- $src $dst && ln -s -- ${dst}/${file} $src
else
mv $opts -- $src $dst && ln -s -- $dst $src
fi
}
### get options for mv
local OPTIND o opts
while getopts "bfv" o; do
case "${o}" in
[bfv])
opts="${opts}${o}"
;;
*)
return
esac
done
shift $((OPTIND-1))
if [ "${opts}" != "" ]; then
opts="-${opts}"
fi
### mv + ln -s
if [ $# -lt 2 ]; then
echo "mvln: too few arguments."
return
elif [ $# -eq 2 ]; then
__mvln "$opts" $1 $2
else
local dst_dir
for dst_dir; do true; done # get the last argument
if [ ! -d $dst_dir ]; then
mkdir -p $dst_dir || return
fi
for src_file in ${@:1:${#}-1}; do
local dst_file=${dst_dir}/${src_file}
__mvln "$opts" $src_file $dst_file
done
fi
}
view raw mvln.sh hosted with ❤ by GitHub

  • 書式はmvと同じ
  • b, f, vオプションだけ受け付けてmvに渡す
作成にあたり、以下の情報を参考にしました。
こんな単純なものが今まで作られていないわけが無いと思うので、検索に使うmv・ln・移動・シンボリックあたりの単語で余計なものが引っかかりすぎているだけのような気はしますが…。
(これは惜しかった → linux - Bash: move file/directory and create a link of it - Stack Overflow)

0 件のコメント:

コメントを投稿