path property

  1. @TagNumber(1)
String path

Script file path on the host VM.

To specify an interpreter, please add a #!<interpreter>(also known as shebang line) as the first line of the file.(For example, to execute the script using bash, #!/bin/bash should be the first line of the file. To execute the script usingPython3, #!/usr/bin/env python3 should be the first line of the file.) Otherwise, the file will by default be excuted by /bin/sh.

Implementation

@$pb.TagNumber(1)
$core.String get path => $_getSZ(0);
  1. @TagNumber(1)
void path=(String v)

Implementation

@$pb.TagNumber(1)
set path($core.String v) { $_setString(0, v); }