#!/bin/bash
# Variable
dest=/mnt/ahurac/phone
# Commands building
# Create destination
create_destination=(
mkdir
-p
"$dest"
)
# Mount phone
mount_phone=(
aft-mtp-mount
# Execution
set -xe
"${create_destination[@]}"
"${mount_phone[@]}"