LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

phpstorm

launches PhpStorm IDE

TLDR

Open project
$ phpstorm [path/to/project]
copy
Open file at line
$ phpstorm --line [42] [file.php]
copy
Compare files
$ phpstorm diff [file1.php] [file2.php]
copy
Open in new window
$ phpstorm --new-window [path/to/project]
copy
Wait for close
$ phpstorm --wait [file.php]
copy
Inspect code
$ phpstorm inspect [project] [output] -v2
copy

SYNOPSIS

phpstorm [--line n] [--new-window] [options] [path]

DESCRIPTION

phpstorm launches PhpStorm IDE. It opens projects and files.JetBrains PHP IDE. Professional development environment.Command-line launcher enables integration. Open from terminal.Diff mode compares files. Built-in comparison tool.

PARAMETERS

--line N

Open at line number.
--column N
Open at column.
--new-window
Force new window.
--wait
Wait until closed.
diff
Compare two files.
inspect
Run code inspection.
--help
Show help.

CAVEATS

Requires PhpStorm installation. Commercial software. Launcher script location varies.

HISTORY

PhpStorm is developed by JetBrains. It provides professional PHP development tools with intelligent coding assistance.

SEE ALSO

idea(1), webstorm(1), code(1)

Copied to clipboard
Kai