github.com/primecitizens/pcz/std@v0.2.1/core/sys/execpath_arg0.go (about)

     1  // SPDX-License-Identifier: Apache-2.0
     2  // Copyright 2023 The Prime Citizens
     3  
     4  //go:build !noos && (js || wasip1 || linux || freebsd || netbsd || openbsd || solaris || dragonfly || windows)
     5  
     6  package sys
     7  
     8  func ExecutablePath() string {
     9  	if len(args) > 0 {
    10  		return ntharg(0)
    11  	}
    12  
    13  	return ""
    14  }