이 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

관련 정보