Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
binwalk
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fact-depend
binwalk
Commits
4bb153c2
Commit
4bb153c2
authored
Dec 05, 2013
by
devttys0
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed typos in rehash
parent
f88e0947
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
rehash
src/bin/rehash
+4
-1
setup.py
src/setup.py
+1
-1
No files found.
src/bin/rehash
View file @
4bb153c2
...
...
@@ -26,7 +26,7 @@ def usage(fd):
fd
.
write
(
"
\t
-d, --diff Only show files that are different
\n
"
)
fd
.
write
(
"
\t
-s, --same Only show files that are the same
\n
"
)
fd
.
write
(
"
\t
-S, --strings Diff strings inside files instead of the entire file
\n
"
)
fd
.
write
(
"
\t
-c, --cutoff=<n> Set the cutoff percentage (default:
%
d
%
)
\n
"
%
DEFAULT_CUTOFF
)
fd
.
write
(
"
\t
-c, --cutoff=<n> Set the cutoff percentage (default:
%
d)
\n
"
%
DEFAULT_CUTOFF
)
fd
.
write
(
"
\t
-m, --max=<n> Quit after n number of matches
\n
"
)
fd
.
write
(
"
\n
"
)
...
...
@@ -97,6 +97,9 @@ def main():
"quiet"
,
]
if
len
(
sys
.
argv
)
<
3
:
usage
(
sys
.
stderr
)
try
:
opts
,
args
=
GetOpt
(
sys
.
argv
[
1
:],
short_options
,
long_options
)
except
GetoptError
as
e
:
...
...
src/setup.py
View file @
4bb153c2
...
...
@@ -117,6 +117,6 @@ setup( name = "binwalk",
requires
=
[
"magic"
,
"pyqtgraph"
],
packages
=
[
"binwalk"
],
package_data
=
{
"binwalk"
:
install_data_files
},
scripts
=
[
"bin/binwalk"
],
scripts
=
[
"bin/binwalk"
,
"bin/rehash"
],
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment