Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
int main(int argc, char* argv[])
{
std::cout << std::filesystem::path(argv[0]).filename() << '\n';
}
Require C++17
program p
implicit none
character(len=:),allocatable :: s
integer :: stat,l,i,j,k
call get_command_argument (0,length=l)
allocate(character(len=l) :: s)
call get_command_argument (0,s,status=stat)
if (stat == 0) then
i=index(s,'/',back=.true.)
j=index(s,'\',back=.true.)
k=max(i,j)
if(k.ne.0)s=s(k+1:)
print *, "The program's name is " // trim (s)
endif
end program p
simplifying assumption is that both / and \ are not allowed in a filename but if present are assumed to delimit the leaf name
var s = process.argv0;
This assumes a node environment with a process global.
s = arg[0]
the script name is the argument before the first one (table index begin at 1)
$s = $_SERVER['PHP_SELF'];
s := ExtractFileName(ParamStr(0));
my $s = $0;
s = $0
Unfortunately, s includes the path given to the interpreter, not just the .rb program name.
s = __FILE__
fn get_exec_name() -> Option<String> {
std::env::current_exe()
.ok()
.and_then(|pb| pb.file_name().map(|s| s.to_os_string()))
.and_then(|s| s.into_string().ok())
}
fn main() -> () {
let s = get_exec_name().unwrap();
println!("{}", s);
}