Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add overwrite/insert toggle to "Fill range" tool #213

Closed
Char11e opened this issue Aug 7, 2023 · 2 comments
Closed

Add overwrite/insert toggle to "Fill range" tool #213

Char11e opened this issue Aug 7, 2023 · 2 comments
Labels
feature A new feature
Milestone

Comments

@Char11e
Copy link

Char11e commented Aug 7, 2023

My data ends at 0x16F401DAFFF.
I want to quickly fill every bit with 0's.
Fill in the start address is 0x16F401DB000 to end address is 0x17FCE8FFFFF.

@solemnwarning
Copy link
Owner

solemnwarning commented Aug 7, 2023

The only way to bulk-insert new bytes at the moment is by pasting them from the clipboard. I might add an "Insert range" command alongside the "Fill range" that currently exists (or add an insert toggle to the latter).

EDIT: Since you want to append to the end of the file, assuming you're on Linux you could do something like this:

dd if=/dev/zero bs=1024 count=69442708 >> file.bin

@solemnwarning
Copy link
Owner

I've added an overwrite/insert toggle to the "Fill range" tool for the next version:

image

@solemnwarning solemnwarning changed the title How to quickly add 0x00 data? Add overwrite/insert toggle to "Fill range" tool Oct 28, 2023
@solemnwarning solemnwarning added the feature A new feature label Oct 28, 2023
@solemnwarning solemnwarning added this to the 0.60.2 milestone Oct 28, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature A new feature
Projects
None yet
Development

No branches or pull requests

2 participants