![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/.cache/JetBrains/RemoteDev/dist/3178052ea295c_PhpStorm-241.17011.49/bin/ |
#!/bin/sh # Copyright 2000-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. # ------------------------------------------------------ # PhpStorm LightEdit mode Linux script. # ------------------------------------------------------ message() { TITLE="Cannot start LightEdit mode script" if [ -n "$(command -v notify-send)" ]; then notify-send "ERROR: $TITLE" "$1" else printf "ERROR: %s\n%s\n" "$TITLE" "$1" fi } if [ -z "$(command -v dirname)" ]; then message "Required 'dirname' utility is missing in the system." exit 1 elif [ -z "$(command -v realpath)" ]; then message "Required 'realpath' utility is missing in the system." exit 1 fi IDE_BIN_HOME=$(dirname $(realpath "$0")) exec "$IDE_BIN_HOME/phpstorm.sh" nosplash -e "$@"