"case"を使用したスクリプトパラメータの処理

"case"を使用したスクリプトパラメータの処理

このcase文を使用してパラメータを処理できますか?したがって、-restartを使用して「-umount」と「-mount」を実行したいと思います。

#!/bin/bash
case "$1" in
-mount
mount /ip/share1 /local/share1
;;
-umount
umount /ip/share1
;;
-restart
# echo TODO
;;
*)
[...]
esac

答え1

)sが欠落している構文の問題を除いて、これはうまくいくようです。これをテストしましたが、正しく動作します..

#/bin/bash
case "$1" in
  "-mount")
    mount /path/to/device /path/to/mountpoint
    ;;
  "-unmount")
    umount /path/to/mountpoint
    ;;
  "-remount")
    "$0" -unmount
    "$0" -mount
    ;;
  *)
    echo "You have failed to specify what to do correctly."
    exit 1
    ;;
esac

答え2

#!/bin/bash
unset u
mnt() { ${u+u}mount /ip/share1 ${u-"/local/share1"}; }
case "$1"   in
(-mount)            :;; 
(-umount)  u=        ;;
(-restart) u= mnt    ;;
(*)               ! :;;
esac && mnt

^上記のように機能を使用できます。

関連情報