Skip to content
Snippets Groups Projects
Select Git revision
  • 3f5fdd80bc6f8dabfe2171a759b94dc68c88fa40
  • 2024ws default
  • 2023ws protected
3 results

path-02.txt

Blame
  • 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>