New option -pvd_info
This commit is contained in:
@ -15907,6 +15907,7 @@ int Xorriso_option_help(struct XorrisO *xorriso, int flag)
|
||||
"",
|
||||
" -tell_media_space",
|
||||
" Print foreseeable available space on output media",
|
||||
" -pvd_info Print various id strings of the loaded ISO image."
|
||||
"",
|
||||
"Options with variable length path list [...] need the list delimiter text",
|
||||
"as end mark if they are followed by another option. By default this delimiter",
|
||||
@ -17770,6 +17771,13 @@ int Xorriso_option_publisher(struct XorrisO *xorriso, char *name, int flag)
|
||||
}
|
||||
|
||||
|
||||
/* Option -pvd_info */
|
||||
int Xorriso_option_pvd_info(struct XorrisO *xorriso, int flag)
|
||||
{
|
||||
return(Xorriso_pvd_info(xorriso, 0));
|
||||
}
|
||||
|
||||
|
||||
/* Option -pwd alias -pwdi */
|
||||
int Xorriso_option_pwdi(struct XorrisO *xorriso, int flag)
|
||||
{
|
||||
@ -19114,7 +19122,7 @@ int Xorriso_count_args(struct XorrisO *xorriso, int argc, char **argv,
|
||||
static char arg0_commands[][40]= {
|
||||
"ban_stdio_write","close_filter_list","commit","devices","end",
|
||||
"for_backup", "help",
|
||||
"list_formats","no_rc","print_size","pwd","pwdi","pwdx",
|
||||
"list_formats","no_rc","print_size","pvd_info","pwd","pwdi","pwdx",
|
||||
"rollback","rollback_end","tell_media_space","toc","version",
|
||||
""
|
||||
};
|
||||
@ -19772,6 +19780,9 @@ next_command:;
|
||||
(*idx)++;
|
||||
Xorriso_option_publisher(xorriso, arg1, 0);
|
||||
|
||||
} else if(strcmp(cmd,"pvd_info")==0) {
|
||||
Xorriso_option_pvd_info(xorriso, 0);
|
||||
|
||||
} else if(strcmp(cmd,"pwd")==0 || strcmp(cmd,"pwdi")==0) {
|
||||
Xorriso_option_pwdi(xorriso, 0);
|
||||
|
||||
|
Reference in New Issue
Block a user