為什麼這個 mv 指令有效

為什麼這個 mv 指令有效

我找到了這個 mv 命令,但我找不到它為什麼起作用:

sudo  mv /usr/share/dbus-1 /services/org.freedesktop.Notification.service{,.disabled}

我在手冊頁中找不到此語法。

答案1

在命令中的該位置,{}指示替代項列表,在本例中為""".disabled"。自己嘗試一下,使用echo( 並刪除後面的空格/dbus-1

$ echo /usr/share/dbus-1/services/org.freedesktop.Notification.service{,.disabled}
/usr/share/dbus-1/services/org.freedesktop.Notification.service /usr/share/dbus-1/services/org.freedesktop.Notification.service.disabled

相關內容