我有一个Linux Bash GUI(Ubuntu / Gnome),我想移植到Windows 10,但我需要powershell
等效项,以用于1000行中的两行:
获取桌面图标位置:
Position=$(gvfs-info -a 'metadata::nautilus-icon-position' "$File")
设置桌面图标位置:
gvfs-set-attribute -t string "$File" 'metadata::nautilus-icon-position' "$Position"
还有第三个问题,那就是知道什么目录图标存储在其中,但我希望自己能解决这个问题:
ICONS_DIR="/home/$USER/Desktop"
我的目标是添加一个简单的if
语句:
if [[ "$Windows10" == true ]] ; then
powershell "stuff"
else
"normal stuff"
fi
很久以前,我发现"$Windows10"
变量是powershell
的东西,使我在许多Google之后变得无能为力。