diff --git a/app/cli-acx/src/main/java/io/github/applecommander/acx/command/InfoCommand.java b/app/cli-acx/src/main/java/io/github/applecommander/acx/command/InfoCommand.java index 63d7d8bb..7caabbb7 100644 --- a/app/cli-acx/src/main/java/io/github/applecommander/acx/command/InfoCommand.java +++ b/app/cli-acx/src/main/java/io/github/applecommander/acx/command/InfoCommand.java @@ -43,6 +43,9 @@ public class InfoCommand extends ReadOnlyDiskContextCommandOptions { public int handleCommand() throws Exception { LOG.info(() -> "Path: " + context().source.getName()); if (selectedDisks().isEmpty()) { + for (Information info : context().source.information()) { + System.out.printf("%s: %s\n", info.label(), info.value()); + } List devices = context().trackSectorDevice() .include13Sector() .include16Sector(Hint.DOS_SECTOR_ORDER)