dotfiles/bin/mount-phone
2023-04-13 00:25:00 +02:00

24 lines
273 B
Bash
Executable file

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