mirror of
https://github.com/AquaMorph/dotfiles.git
synced 2025-04-29 09:15:34 +00:00
11 lines
184 B
Bash
11 lines
184 B
Bash
#! /bin/bash
|
|
|
|
# Load user settings from config file.
|
|
. ~/.config/settings.conf
|
|
|
|
if nc -z $nasip 80 2>/dev/null; then
|
|
mount /mnt/share/lNAS
|
|
else
|
|
echo "$nasip is unreachable"
|
|
fi
|