if [ -L "${source}" ]; then
echo "Symlinked..."
source="$(readlink "${source}")"
fi
このように変更する
if [ -L "${source}" ]; then
echo "Symlinked..."
source="$(readlink -f "${source}")"
fi
Just another WordPress site
if [ -L "${source}" ]; then
echo "Symlinked..."
source="$(readlink "${source}")"
fi
このように変更する
if [ -L "${source}" ]; then
echo "Symlinked..."
source="$(readlink -f "${source}")"
fi