Open
Conversation
The actual smallest change ever made on github? Added a hash to the uninstall line where you have parenthesis so the copy block on github works without error when pasting into terminal
```
# podman stop ntopng
cae2433e97608461e831b815dcac877bbd776a57efd42668b46b8d86b497309a
# podman rm ntopng
cae2433e97608461e831b815dcac877bbd776a57efd42668b46b8d86b497309a
# podman rmi docker.io/tusc/ntopng-udm (or "docker rmi ntopng-image" if you installed the first release)
-sh: syntax error: unexpected "("
```
becomes
```
# podman stop ntopng
ee056c1058234b226949687d884b2bae5a1913bd6d996330ce0cfd2fab4ddcfa
# podman rm ntopng
ee056c1058234b226949687d884b2bae5a1913bd6d996330ce0cfd2fab4ddcfa
# podman rmi docker.io/tusc/ntopng-udm #(or "docker rmi ntopng-image" if you installed the first release)
Untagged: docker.io/tusc/ntopng-udm:latest
Deleted: da456e3aff0b2d6ba8094228dd712857d0ae0dca03b660bf87a7482d7e857906
```
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The actual smallest change ever made on github? Added a hash to the uninstall line where you have parenthesis so the copy block on github works without error when pasting into terminal
becomes