Skip to content
Snippets Groups Projects
Select Git revision
  • e5a55ae5d895b36506b339f1f24833424616305f
  • master default protected
  • 2018ws
  • 2017ws
  • 2016ws
5 results

side-effects-10.c

Blame
  • Forked from Peter Gerwinski / hp
    Source project has a limited visibility.
    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>