bash: password: event not found #14
Closed
by gqueruel opened 6 years ago
·
4 comments
Loading…
Reference in new issue
There is no content yet.
Delete Branch '%!s(MISSING)'
Deleting a branch is permanent. It CANNOT be undone. Continue?
Hi,
I tried to execute deletefb according to the readme file but I encountered an "even not found" issue with some portion of my password.
Could you post the full stack trace here and format it as a code block by surrounding it in backticks, ```stacktrace```
Your password might contains a quote and a
!
, which causes bash to interpret it. Make sure that you enter your password between quotes and escape any quotes that are inside your password. For instance, if your password ishe"llo!world
, usedeletefb [...] -P "he\"llo!world" [...]
.Hope this helps
Once https://github.com/weskerfoot/DeleteFB/issues/15 is implemented then it would allow you to copy and paste it in without escaping
Your password contains a !
Wrap your password in single quotes ' instead of double quotes, and it will work correctly.