for (Resource<?> path : paths)
{
if (path instanceof PropertiesFileResource)
{
PropertiesFileResource propResource = (PropertiesFileResource) path;
for (Resource<?> resource : propResource.listResources())
{
EntryResource<String, String> entryResource = (EntryResource<String, String>) resource;
out.print(ShellColor.BOLD, entryResource.getKey() + ": ");
out.println(entryResource.getValue());
}