mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-22 16:08:23 +08:00
UF 0.10.1
- added newline to the messages - corrected a typo in quick help string
This commit is contained in:
parent
9eed1e3fd4
commit
788397f60c
@ -95,7 +95,7 @@ int main(int argc, char *argv[])
|
|||||||
// Split the read line
|
// Split the read line
|
||||||
QList<QByteArray> list = line.split(' ');
|
QList<QByteArray> list = line.split(' ');
|
||||||
if (list.count() < 3) {
|
if (list.count() < 3) {
|
||||||
std::cout << line.toStdString() << "skipped, too few arguments" << std::endl;
|
std::cout << line.toStdString() << "skipped, too few arguments" << std::endl << std::endl;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
// Get search mode
|
// Get search mode
|
||||||
@ -107,7 +107,7 @@ int main(int argc, char *argv[])
|
|||||||
else if (list.at(0) == QString("all"))
|
else if (list.at(0) == QString("all"))
|
||||||
mode = SEARCH_MODE_ALL;
|
mode = SEARCH_MODE_ALL;
|
||||||
else {
|
else {
|
||||||
std::cout << line.toStdString() << "skipped, invalid search mode" << std::endl;
|
std::cout << line.toStdString() << "skipped, invalid search mode" << std::endl << std::endl;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,7 +118,7 @@ int main(int argc, char *argv[])
|
|||||||
else if (list.at(1) == QString("count"))
|
else if (list.at(1) == QString("count"))
|
||||||
count = true;
|
count = true;
|
||||||
else {
|
else {
|
||||||
std::cout << line.toStdString() << "skipped, invalid result type" << std::endl;
|
std::cout << line.toStdString() << "skipped, invalid result type" << std::endl << std::endl;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -126,13 +126,13 @@ int main(int argc, char *argv[])
|
|||||||
QString found;
|
QString found;
|
||||||
result = w.find(mode, count, list.at(2), found);
|
result = w.find(mode, count, list.at(2), found);
|
||||||
if (result) {
|
if (result) {
|
||||||
std::cout << line.toStdString() << "skipped, find failed with error " << result << std::endl;
|
std::cout << line.toStdString() << "skipped, find failed with error " << result << std::endl << std::endl;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (found.isEmpty()) {
|
if (found.isEmpty()) {
|
||||||
// Nothing is found
|
// Nothing is found
|
||||||
std::cout << line.toStdString() << "nothing found" << std::endl;
|
std::cout << line.toStdString() << "nothing found" << std::endl << std::endl;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// Print result
|
// Print result
|
||||||
@ -148,9 +148,9 @@ int main(int argc, char *argv[])
|
|||||||
return ERR_SUCCESS;
|
return ERR_SUCCESS;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
std::cout << "UEFIFind 0.10.0" << std::endl << std::endl <<
|
std::cout << "UEFIFind 0.10.1" << std::endl << std::endl <<
|
||||||
"Usage: uefifind {header | body | all} {list | count} pattern imagefile" << std::endl <<
|
"Usage: uefifind {header | body | all} {list | count} pattern imagefile" << std::endl <<
|
||||||
" or uefitool file patternsfile imagefile" << std::endl;
|
" or uefifind file patternsfile imagefile" << std::endl;
|
||||||
return ERR_INVALID_PARAMETER;
|
return ERR_INVALID_PARAMETER;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user