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

cp-07.txt

Blame
  • cp-07.txt 916 B
    cassini/home/peter/bo/2023ws/dbs/20231012> ls -l h*.c
    -rw-r--r-- 1 peter peter 81 12. Okt 12:18 hallo.c
    -rw-r--r-- 1 peter peter 82 12. Okt 12:20 hello.c
    -rw-r--r-- 1 peter peter 86 12. Okt 12:26 hola.c
    cassini/home/peter/bo/2023ws/dbs/20231012> cat hello.c
    #include <stdio.h>
    
    int main (void)
    {
      printf ("Hello, world!\n");
      return 0;
    }
    cassini/home/peter/bo/2023ws/dbs/20231012> cat hallo.c
    #include <stdio.h>
    
    int main (void)
    {
      printf ("Hallo, Welt!\n");
      return 0;
    }
    cassini/home/peter/bo/2023ws/dbs/20231012> cat hola.c
    #include <stdio.h>
    
    int main (void)
    {
      printf ("¡Hola, el mundo!\n");
      return 0;
    }
    cassini/home/peter/bo/2023ws/dbs/20231012> cd test
    cassini/home/peter/bo/2023ws/dbs/20231012/test> cp ../h*.c
    cp: Ziel '../hola.c': Ist kein Verzeichnis
    cassini/home/peter/bo/2023ws/dbs/20231012/test> echo cp ../h*.c
    cp ../hallo.c ../hello.c ../hola.c
    cassini/home/peter/bo/2023ws/dbs/20231012/test>