Linux

Linux命令將文件從桌面移動到家庭網路上的手機

  • June 5, 2020

我需要使用 Bash 腳本將特定文件從我的 Linux PC 傳輸到 Android 手機。我已經將我的手機文件系統暴露給了 PC。有了這個,我可以使用 nautilus 和 PC 上的 GS Connect 和手機上的 KDE Con​​nect 輕鬆地在兩者之間進行通信。順便說一句,我的兩個設備都在同一個家庭網路上。請幫忙!

最後,我得到了使用 sftp 的解決方案。我使用了以下腳本。

#! /bin/bash
#Capture and share screenshot to my phone
gnome-screenshot
cd /home/prm/Pictures
FILE="$(ls -Art | tail -n 1)" #To get the last created file
echo $FILE
sftp sftp://192.168.1.3:1761/primary/DCIM/Screenshots <<EOF
put "$FILE"
bye
EOF

引用自:https://unix.stackexchange.com/questions/590801