- Specify the following command line arguments:
- Path to the launcher: specify the full path to one of the following launchers (which reside
under the bin directory of your IntelliJ IDEA installation):
- For Windows:inspect.bat
- For UNIX and Mac:inspect.sh
- Project file path is the full path to the *.ipr file or .idea directory of the project to be inspected.
- Inspection profile path is the full path to the profile, against which the project should be inspected. The inspection profiles are stored under USER_HOME\.IntelliJ IDEAXX\config\inspection
- Output path is the full path to an existing directory where the report will be stored.
-
Options. You can specify:
- The directory to be inspected -d <full path to the subdirectory>
- The verbosity level of output -vX, where X is 0 for quiet, 1 for noisy and 2 for extra noisy.
Note
Please note that you have to specify full paths, relative paths are not accepted.
- Path to the launcher: specify the full path to one of the following launchers (which reside
under the bin directory of your IntelliJ IDEA installation):
Examples
Windows
C:\Program Files (x86)\JetBrains\<IntelliJ IDEA home>\bin\inspect.bat E:\SampleProjects\MetersToInchesConverter E:\Work\MyProject\.idea\inspectionProfiles\Project_Default.xml E:\Work\MyProject\inspection-results-dir -v2 -d E:\SampleProjects\MetersToInchesConverter\subdirectory
MacOS
/Applications/IntelliJ IDEA.app/bin/inspect.sh ~/IdeaProjects/MyTestProject ~/Library/Preferences/IntelliJ IDEA/inspection/Default.xml ~/IdeaProjects/MyTestProject/results-dir -v2
- In the command line, type the following:
where:
<IntelliJ IDEA> diff <path1> <path2>- <IntelliJ IDEA> is the platform-specific product launcher
- <path1>, <path2> are full paths to the files to be compared.
Examples
Windows
IntelliJ IDEA.exe diff C:\SamplesProjects\MetersToInchesConverter\src\javascript\numbers.js C:\SamplesProjects\MetersToInchesConverter\src\coffeescript\numbers.coffee
MacOS
/Applications/IntelliJ IDEA.app/Contents/MacOS/idea diff ~/Documents/file1.txt ~/Documents/file2.txt- In the command line, type the following:
where:
<IntelliJ IDEA> <path1> --line<number> <path1>- <IntelliJ IDEA> is the platform-specific product launcher
- <path1> is the path to the project that contains the desired file
- <number> is the number of the line, where the caret should rest
- <path2> is the path to the file to be opened
Examples
Windows
IntelliJ IDEA.exe C:\SamplesProjects\MetersToInchesConverter --line 3 C:\SamplesProjects\MetersToInchesConverter\src\javascript\numbers.js
MacOS
/Applications/IntelliJ IDEA.app/ ~/IdeaProjects/MyTestProject --line 3 ~/IdeaProjects/MyTestProject/file1.txt

