मैं स्क्रिप्टिंग में नया हूं ... मैं बहुत बुनियादी चीजें कर सकता हूं, लेकिन अब मुझे हाथ की जरूरत है।
मेरे पास एक स्थानीय फाइल सिस्टम है जो केवल तभी माउंट किया जाएगा जब मुझे बैकअप करने की आवश्यकता होगी।
मैं इसकी शुरुआत कर रहा हूं।
#!/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
आपकी स्क्रिप्ट में एक मजेदार झूलना है।