diff --git a/README.md b/README.md index 42a2820..6e88d73 100644 --- a/README.md +++ b/README.md @@ -58,27 +58,31 @@ If you're a visual learner like me, check out this detailed tutorial by [wrencha
When working with the scripts, make sure to carefully read the REM (remark) lines. REMs explain the purpose of each line or provide instructions to the user. It's crucial to always read and understand the REMs!
'ID 05ac:021e Apple:Keyboard'
This code helps the operating system identify the specific device (in this case, the Flipper Zero) and load the appropriate drivers or configurations, such as for an Apple keyboard.
'echo -e "export HISTCONTROL=ignorespace\nunset HISTFILE" >> ~/.bashrc && source ~/.bashrc && exec bash'
This code enables the 'ignorespace' option for the command history, preventing commands with a leading space from being stored in the shell history. Special thanks to [FalsePhilosopher](https://github.com/FalsePhilosopher) for helping create this string!
history -d $(history | tail -n 2 | head -n 1 | awk '{ print $1 }')
This code removes the specific command from the history, ensuring minimal traces are left behind and helping maintain discretion and privacy.