我正在尝试使用此脚本从剪贴板移动文件:
#!/bin/bash
# Get the file path from the clipboard
file=$(xclip -selection clipboard -o)
# Move the file
mv "$file" "/home/sarah/Music/Indexing/Indexing Temp/"
但是,mv
不支持file://
语法。我应该只使用 first 剪辑文件字符串tr
,还是有其他推荐的解决方案来解决这个问题?
将参数替换与
#
. 看man bash