You should refer the original page. The all copyrights of these documents belong to them.
- grep :: search a file for a pattern
You should refer the original page. The all copyrights of these documents belong to them.
| #!/bin/bash | |
| set -e | |
| if [ -d ~/.local/share/JetBrains/Toolbox ]; then | |
| echo "JetBrains Toolbox is already installed!" | |
| exit 0 | |
| fi | |
| echo "Start installation..." |
| <rule name="NoWildcardImports" | |
| language="java" | |
| message="Please don't use wildcard imports" | |
| class="net.sourceforge.pmd.lang.rule.XPathRule"> | |
| <description> | |
| Black-list wildcard imports. Those clutter namespace and eventually end up in fun stuff like java.util.List | |
| and java.awt.List getting mixed. | |
| </description> | |
| <priority>1</priority> | |
| <properties> |