24 lines
273 B
Bash
Executable file
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[@]}"
|
|
|