-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Integrated ifind help text inside the project in header file plus som…
…e minor changes.
- Loading branch information
1 parent
7321a69
commit cdbca79
Showing
9 changed files
with
47 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,8 @@ | |
*.exe | ||
*.cache | ||
*.p12 | ||
*.cmd | ||
*.opendb | ||
|
||
Debug | ||
Release | ||
|
@@ -43,3 +45,4 @@ Release | |
|
||
IndexerLog.txt | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
// This file is the part of the Indexer++ project. | ||
// Copyright (C) 2016 Anna Krykora <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a MIT-style license that can be found in the LICENSE file. | ||
|
||
#pragma once | ||
|
||
namespace ifind | ||
{ | ||
|
||
const char* gHelpText = R"(Usage: ifind [path...] [expression] | ||
default path is the current directory; '/' will search the whole system; | ||
expression may consist of tests and actions: | ||
tests (N can be +N or -N or N): | ||
-amin N -atime N | ||
-cmin N -ctime N | ||
-mmin N -mtime N | ||
-iname PATTERN -name PATTERN | ||
-size N[kMG] | ||
'k' for Kilobytes (units of 1024 bytes) (this is default value) | ||
'M' for Megabytes (units of 1048576 bytes) | ||
'G' for Gigabytes (units of 1073741824 bytes) | ||
-type [fd] | ||
actions: | ||
-printf format | ||
-fprint file | ||
-fprintf file format)"; | ||
|
||
} //namespace ifind |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters