Select Git revision
path-02.txt
Peter Gerwinski authored
path-02.txt 430 B
cassini/home/peter/bo/2024ws/dbs/20241009> cat hello.c
#include <stdio.h>
int main (void)
{
printf ("Hello, world!\n");
return 0;
}
cassini/home/peter/bo/2024ws/dbs/20241009> hello
bash: hello: Kommando nicht gefunden.
cassini/home/peter/bo/2024ws/dbs/20241009> /home/peter/bo/2024ws/dbs/20241009/hello
Hello, world!
cassini/home/peter/bo/2024ws/dbs/20241009> ./hello
Hello, world!
cassini/home/peter/bo/2024ws/dbs/20241009>