TestDisk: define nodump, align, noalign, expert, noexpert options in scripted run
This commit is contained in:
parent
63673d97ec
commit
32ac729a5d
1 changed files with 15 additions and 0 deletions
|
@ -93,16 +93,31 @@ void interface_options(int *dump_ind, int *align, unsigned int *expert, char**cu
|
|||
(*current_cmd)+=4;
|
||||
*dump_ind=1;
|
||||
}
|
||||
else if(strncmp(*current_cmd,"nodump",6)==0)
|
||||
{
|
||||
(*current_cmd)+=6;
|
||||
*dump_ind=0;
|
||||
}
|
||||
else if(strncmp(*current_cmd,"align",5)==0)
|
||||
{
|
||||
(*current_cmd)+=5;
|
||||
*align=1;
|
||||
}
|
||||
else if(strncmp(*current_cmd,"noalign",7)==0)
|
||||
{
|
||||
(*current_cmd)+=7;
|
||||
*align=0;
|
||||
}
|
||||
else if(strncmp(*current_cmd,"expert",6)==0)
|
||||
{
|
||||
(*current_cmd)+=6;
|
||||
*expert=1;
|
||||
}
|
||||
else if(strncmp(*current_cmd,"noexpert",8)==0)
|
||||
{
|
||||
(*current_cmd)+=6;
|
||||
*expert=0;
|
||||
}
|
||||
else
|
||||
keep_asking=0;
|
||||
} while(keep_asking>0);
|
||||
|
|
Loading…
Reference in a new issue