我需要zenity
将选定的文件名放入没有路径的变量中。我现在拥有的是
file_to_copy="$(zenity --file-selection --title='Select a File')"
echo $file_to_copy
然后打印
/home/blades/Scripts/openwrt-vpn-renew/ze.sh
我只想打印ze.sh
.
我需要zenity
将选定的文件名放入没有路径的变量中。我现在拥有的是
file_to_copy="$(zenity --file-selection --title='Select a File')"
echo $file_to_copy
然后打印
/home/blades/Scripts/openwrt-vpn-renew/ze.sh
我只想打印ze.sh
.
如果您不是绝对需要
zenity
为您提供此功能,那么您可以在 shell 中轻松完成,或者使用参数扩展where
##*/
指的是最长的前导字符串匹配*/
,或使用basename
实用程序