私はスクリプトを書くのは初めてです...私は非常に基本的なことをすることができますが、今は手が必要です。
バックアップが必要なときにのみマウントされるローカルファイルシステムがあります。
私はこれから始めています。
#!/bin/bash
export MOUNT=/myfilesystem
if grep -qs $MOUNT /proc/mounts; then
echo "It's mounted."
else
echo "It's not mounted."; then
mount $MOUNT;
fi
私が言ったように、私はスクリプト作成は非常に基本的です。mount
リターンコードを見ることで、コマンドのステータスを確認できると聞きました。
RETURN CODES
mount has the following return codes (the bits can be ORed):
0 success
1 incorrect invocation or permissions
2 system error (out of memory, cannot fork, no more loop devices)
4 internal mount bug
8 user interrupt
16 problems writing or locking /etc/mtab
32 mount failure
64 some mount succeeded
それを確認する方法がわかりません。ガイダンスはありますか?
; then
スクリプトに面白いぶら下がりがあります。