# p

Specifies the process ID (PID) or a unique keyword (token) to identify the target Java process.
If a token is provided (e.g., a JAR name), the yc-360 script internally resolves the PID using ps -ef | grep <token>

Type: string or int

Default: ""

Example (YAML):

options:
  p: 12345
1
2

Example (CLI):

./yc -p webapp-runner.jar
1
./yc -p 12345
1