Skip to content
Snippets Groups Projects
Commit a8c15674 authored by Peter Gerwinski's avatar Peter Gerwinski
Browse files

Beispiele 23.4.2021

parent fa6aae00
No related branches found
No related tags found
No related merge requests found
Showing
with 392 additions and 0 deletions
cassini/home/peter/bo/2021ss/bs/20210423> echo Test; ls
Test
test test-2.c unix-20210423.pdf unix-20210423.tex wildcards-1.txt wildcards-2.txt
cassini/home/peter/bo/2021ss/bs/20210423>
cassini/home/peter/bo/2021ss/bs/20210423> echo "Test; ls"
Test; ls
cassini/home/peter/bo/2021ss/bs/20210423>
cassini/home/peter/bo/2021ss/bs/20210423> echo ls
ls
cassini/home/peter/bo/2021ss/bs/20210423> $(echo ls)
echo-1.txt grep-2.txt iostreams-2.txt permissions-1.txt test.txt
echo-2.txt grep-3.txt iostreams-3.txt pipes-1.txt unix-20210423.pdf
find-1.txt grep-4.txt iostreams-4.txt pipes-2.txt unix-20210423.tex
find-2.txt grep-5.txt iostreams-5.txt pipes-3.txt vic
find-3.txt hello-error.txt iostreams-6.txt test wildcards-1.txt
find-4.txt hello-files-and-error.txt iostreams-7.txt test-1.c wildcards-2.txt
find-5.txt hello-files.txt iostreams-8.txt test-2.c wildcards-3.txt
grep-1.txt iostreams-1.txt iostreams-.txt2 test.bc xkcd
cassini/home/peter/bo/2021ss/bs/20210423>
cassini/home/peter/bo/2021ss/bs/20210423> locate listings.pdf
/home/peter/bo/doc/listings.pdf
/usr/share/doc/texlive-doc/latex/checklistings/checklistings.pdf
/usr/share/doc/texlive-doc/latex/iodhbwm/examples/listings/iodhbwm-listings.pdf
/usr/share/doc/texlive-doc/latex/listings/listings.pdf
/usr/share/doc/texlive-doc/latex/tagpdf/ex-spaceglyph-listings.pdf
/usr/share/doc/texlive-doc/latex/xsim/examples/xsim.listings.pdf
cassini/home/peter/bo/2021ss/bs/20210423> locate listings.pdf | head -1
/home/peter/bo/doc/listings.pdf
cassini/home/peter/bo/2021ss/bs/20210423> xpdf $(locate listings.pdf | head -1)
cassini/home/peter/bo/2021ss/bs/20210423>
cassini/home/peter/bo/2021ss/bs/20210423> file_template=$(ls -rt *.c *.cpp *.sh *.py *.tex *.diff 2>/dev/null | tail -1)
cassini/home/peter/bo/2021ss/bs/20210423> echo $file_template
params-3.sh
cassini/home/peter/bo/2021ss/bs/20210423>
cassini/home/peter/bo/2021ss/bs> find -name "test*"
./20210423/test-1.c
./20210423/test-2.c
./20210423/test
./20210416/test-3.txt
./20210416/test
./20210416/test-1.txt
cassini/home/peter/bo/2021ss/bs> find . -name "test*" -print
./20210423/test-1.c
./20210423/test-2.c
./20210423/test
./20210416/test-3.txt
./20210416/test
./20210416/test-1.txt
cassini/home/peter/bo/2021ss/bs>
cassini/home/peter/bo/2021ss/bs> find . -name "test-[1-2].txt" -print
./20210416/test-1.txt
cassini/home/peter/bo/2021ss/bs> find . -name "test-[1-2].[ch]" -print
./20210423/test-1.c
./20210423/test-2.c
cassini/home/peter/bo/2021ss/bs>
cassini/home/peter/bo/2021ss/bs> find . -name "test-[1-2].[ch]" -exec ls -l {} \;
-rw-r--r-- 2 peter peter 82 Apr 23 11:56 ./20210423/test-1.c
-rw-r--r-- 2 peter peter 82 Apr 23 11:56 ./20210423/test-2.c
cassini/home/peter/bo/2021ss/bs> find . -name "test-[1-2].[ch]" -exec ls -l {} +
-rw-r--r-- 2 peter peter 82 Apr 23 11:56 ./20210423/test-1.c
-rw-r--r-- 2 peter peter 82 Apr 23 11:56 ./20210423/test-2.c
cassini/home/peter/bo/2021ss/bs> find . -name "test-*" -exec ls -l {} \;
-rw-r--r-- 2 peter peter 82 Apr 23 11:56 ./20210423/test-1.c
-rw-r--r-- 2 peter peter 82 Apr 23 11:56 ./20210423/test-2.c
lrwxrwxrwx 1 peter peter 10 Apr 16 14:37 ./20210416/test-3.txt -> test-1.txt
-rw-r--r-- 1 peter peter 7 Apr 16 14:47 ./20210416/test-1.txt
cassini/home/peter/bo/2021ss/bs> find . -name "test-*" -exec ls -l {} +
-rw-r--r-- 1 peter peter 7 Apr 16 14:47 ./20210416/test-1.txt
lrwxrwxrwx 1 peter peter 10 Apr 16 14:37 ./20210416/test-3.txt -> test-1.txt
-rw-r--r-- 2 peter peter 82 Apr 23 11:56 ./20210423/test-1.c
-rw-r--r-- 2 peter peter 82 Apr 23 11:56 ./20210423/test-2.c
cassini/home/peter/bo/2021ss/bs>
cassini/home/peter/bo/2021ss/bs/20210423> find . -type f
./test-1.c
./wildcards-1.txt
./test-2.c
./echo-2.txt
./.test.txt
./wildcards-2.txt
./permissions-1.txt
./echo-1.txt
cassini/home/peter/bo/2021ss/bs/20210423> find . -type d
.
./test
cassini/home/peter/bo/2021ss/bs/20210423> find .. -type d
..
../common
../20210423
../20210423/test
../20210416
../20210416/test
../ausarbeitungen
../ausarbeitungen/maas
../20210409
cassini/home/peter/bo/2021ss/bs/20210423> find .. -type l
../20210423/unix-20210423.pdf
../20210423/unix-20210423.tex
../20210416/test-3.txt
../20210416/unix-20210416.tex
../20210416/bs-20210416.tex
../20210416/bs-20210416.pdf
../20210416/unix-20210416.pdf
../20210409/logo-hochschule-bochum-cvh-text.pdf
../20210409/pgslides.sty
../20210409/Operating_system_placement-de.pdf
../20210409/logo-hochschule-bochum.pdf
../20210409/pathfinder.jpg
../20210409/philosophenproblem.jpg
../.git
cassini/home/peter/bo/2021ss/bs/20210423>
cassini/home/peter/bo/2021ss/bs/20210423> find .. -name "find-*.txt"
../20210423/find-1.txt
../20210416/find-1.txt
../20210416/find-4.txt
../20210416/find-2.txt
../20210416/find-3.txt
../find-1.txt
../find-2.txt
../find-3.txt
cassini/home/peter/bo/2021ss/bs/20210423> cd ..
cassini/home/peter/bo/2021ss/bs> t
insgesamt 36
drwxr-xr-x 3 peter peter 4096 Apr 9 15:18 ausarbeitungen
drwxr-xr-x 2 peter peter 4096 Apr 16 10:26 20210409
-rw-r--r-- 1 peter peter 1329 Apr 16 11:50 projekte.txt
drwxr-xr-x 2 peter peter 4096 Apr 16 14:45 common
drwxr-xr-x 3 peter peter 4096 Apr 23 11:06 20210416
-rw-r--r-- 1 peter peter 378 Apr 23 12:00 find-1.txt
-rw-r--r-- 1 peter peter 236 Apr 23 12:01 find-2.txt
-rw-r--r-- 1 peter peter 1108 Apr 23 12:04 find-3.txt
drwxr-xr-x 3 peter peter 4096 Apr 23 12:13 20210423
cassini/home/peter/bo/2021ss/bs>
cassini/home/peter/bo/2021ss/bs/20210423> for x in wichtig Wichtig WICHTIG; do touch $x; done
cassini/home/peter/bo/2021ss/bs/20210423> for x in wichtig Wichtig WICHTIG; do rm $x; done
cassini/home/peter/bo/2021ss/bs/20210423> seq 7
1
2
3
4
5
6
7
cassini/home/peter/bo/2021ss/bs/20210423> for x in $(seq 7); do touch wichtig-$x.txt; done
cassini/home/peter/bo/2021ss/bs/20210423> ls -l wichtig*
-rw-r--r-- 1 peter peter 0 Apr 23 14:45 wichtig-1.txt
-rw-r--r-- 1 peter peter 0 Apr 23 14:45 wichtig-2.txt
-rw-r--r-- 1 peter peter 0 Apr 23 14:45 wichtig-3.txt
-rw-r--r-- 1 peter peter 0 Apr 23 14:45 wichtig-4.txt
-rw-r--r-- 1 peter peter 0 Apr 23 14:45 wichtig-5.txt
-rw-r--r-- 1 peter peter 0 Apr 23 14:45 wichtig-6.txt
-rw-r--r-- 1 peter peter 0 Apr 23 14:45 wichtig-7.txt
cassini/home/peter/bo/2021ss/bs/20210423> for x in $(seq 7); do rm wichtig-$x.txt; done
cassini/home/peter/bo/2021ss/bs/20210423>
cassini/home/peter/bo/2021ss/bs/20210423> for x in $(seq 7); do touch wichtig-$x.txt; done
cassini/home/peter/bo/2021ss/bs/20210423> ls -l wichtig*
-rw-r--r-- 1 peter peter 0 Apr 23 14:46 wichtig-1.txt
-rw-r--r-- 1 peter peter 0 Apr 23 14:46 wichtig-2.txt
-rw-r--r-- 1 peter peter 0 Apr 23 14:46 wichtig-3.txt
-rw-r--r-- 1 peter peter 0 Apr 23 14:46 wichtig-4.txt
-rw-r--r-- 1 peter peter 0 Apr 23 14:46 wichtig-5.txt
-rw-r--r-- 1 peter peter 0 Apr 23 14:46 wichtig-6.txt
-rw-r--r-- 1 peter peter 0 Apr 23 14:46 wichtig-7.txt
cassini/home/peter/bo/2021ss/bs/20210423> for x in wichtig-*.txt; do mv -i "$x" "un$x"; done cassini/home/peter/bo/2021ss/bs/20210423> ls -l *wichtig*
-rw-r--r-- 1 peter peter 0 Apr 23 14:46 unwichtig-1.txt
-rw-r--r-- 1 peter peter 0 Apr 23 14:46 unwichtig-2.txt
-rw-r--r-- 1 peter peter 0 Apr 23 14:46 unwichtig-3.txt
-rw-r--r-- 1 peter peter 0 Apr 23 14:46 unwichtig-4.txt
-rw-r--r-- 1 peter peter 0 Apr 23 14:46 unwichtig-5.txt
-rw-r--r-- 1 peter peter 0 Apr 23 14:46 unwichtig-6.txt
-rw-r--r-- 1 peter peter 0 Apr 23 14:46 unwichtig-7.txt
cassini/home/peter/bo/2021ss/bs/20210423>
cassini/home/peter/bo/2021ss/bs/20210423> grep Hello *
grep: test: Ist ein Verzeichnis
test-1.c: printf ("Hello, world!\n");
test-2.c: printf ("Hello, world!\n");
unix-20210423.tex: printf ("Hello, world!\n");
unix-20210423.tex: Text schreiben: \lstinline[style=cmd]{echo "Hello, world!"}
cassini/home/peter/bo/2021ss/bs/20210423> grep "H[ae]llo" *
grep: test: Ist ein Verzeichnis
test-1.c: printf ("Hello, world!\n");
test-2.c: printf ("Hello, world!\n");
unix-20210423.tex: printf ("Hello, world!\n");
unix-20210423.tex: Text schreiben: \lstinline[style=cmd]{echo "Hello, world!"}
cassini/home/peter/bo/2021ss/bs/20210423> grep "[Hh][a-z]llo" *
grep: test: Ist ein Verzeichnis
test-1.c: printf ("Hello, world!\n");
test-2.c: printf ("Hello, world!\n");
unix-20210423.tex: printf ("Hello, world!\n");
unix-20210423.tex: Text schreiben: \lstinline[style=cmd]{echo "Hello, world!"}
unix-20210423.tex: Programm im aktuellen Verzeichnis aufrufen: \lstinline[style=cmd]{./hello}
unix-20210423.tex: Datei ausgeben: \lstinline[style=cmd]{cat hello.c}
unix-20210423.tex: Datei anzeigen: \lstinline[style=cmd]{less hello.c}
cassini/home/peter/bo/2021ss/bs/20210423>
cassini/home/peter/bo/2021ss/bs/20210423> grep -i "H[ae]llo" *
grep-1.txt:cassini/home/peter/bo/2021ss/bs/20210423> grep Hello *
grep-1.txt:test-1.c: printf ("Hello, world!\n");
grep-1.txt:test-2.c: printf ("Hello, world!\n");
grep-1.txt:unix-20210423.tex: printf ("Hello, world!\n");
grep-1.txt:unix-20210423.tex: Text schreiben: \lstinline[style=cmd]{echo "Hello, world!"}
grep-1.txt:test-1.c: printf ("Hello, world!\n");
grep-1.txt:test-2.c: printf ("Hello, world!\n");
grep-1.txt:unix-20210423.tex: printf ("Hello, world!\n");
grep-1.txt:unix-20210423.tex: Text schreiben: \lstinline[style=cmd]{echo "Hello, world!"}
grep-1.txt:test-1.c: printf ("Hello, world!\n");
grep-1.txt:test-2.c: printf ("Hello, world!\n");
grep-1.txt:unix-20210423.tex: printf ("Hello, world!\n");
grep-1.txt:unix-20210423.tex: Text schreiben: \lstinline[style=cmd]{echo "Hello, world!"}
grep-1.txt:unix-20210423.tex: Programm im aktuellen Verzeichnis aufrufen: \lstinline[style=cmd]{./hello}
grep-1.txt:unix-20210423.tex: Datei ausgeben: \lstinline[style=cmd]{cat hello.c}
grep-1.txt:unix-20210423.tex: Datei anzeigen: \lstinline[style=cmd]{less hello.c}
grep: test: Ist ein Verzeichnis
test-1.c: printf ("Hello, world!\n");
test-2.c: printf ("Hello, world!\n");
unix-20210423.tex: printf ("Hello, world!\n");
unix-20210423.tex: Text schreiben: \lstinline[style=cmd]{echo "Hello, world!"}
unix-20210423.tex: Programm im aktuellen Verzeichnis aufrufen: \lstinline[style=cmd]{./hello}
unix-20210423.tex: Datei ausgeben: \lstinline[style=cmd]{cat hello.c}
unix-20210423.tex: Datei anzeigen: \lstinline[style=cmd]{less hello.c}
cassini/home/peter/bo/2021ss/bs/20210423>
cassini/home/peter/bo/2021ss/bs/20210423> grep printf *
grep-1.txt:test-1.c: printf ("Hello, world!\n");
grep-1.txt:test-2.c: printf ("Hello, world!\n");
grep-1.txt:unix-20210423.tex: printf ("Hello, world!\n");
grep-1.txt:test-1.c: printf ("Hello, world!\n");
grep-1.txt:test-2.c: printf ("Hello, world!\n");
grep-1.txt:unix-20210423.tex: printf ("Hello, world!\n");
grep-1.txt:test-1.c: printf ("Hello, world!\n");
grep-1.txt:test-2.c: printf ("Hello, world!\n");
grep-1.txt:unix-20210423.tex: printf ("Hello, world!\n");
grep-2.txt:grep-1.txt:test-1.c: printf ("Hello, world!\n");
grep-2.txt:grep-1.txt:test-2.c: printf ("Hello, world!\n");
grep-2.txt:grep-1.txt:unix-20210423.tex: printf ("Hello, world!\n");
grep-2.txt:grep-1.txt:test-1.c: printf ("Hello, world!\n");
grep-2.txt:grep-1.txt:test-2.c: printf ("Hello, world!\n");
grep-2.txt:grep-1.txt:unix-20210423.tex: printf ("Hello, world!\n");
grep-2.txt:grep-1.txt:test-1.c: printf ("Hello, world!\n");
grep-2.txt:grep-1.txt:test-2.c: printf ("Hello, world!\n");
grep-2.txt:grep-1.txt:unix-20210423.tex: printf ("Hello, world!\n");
grep-2.txt:test-1.c: printf ("Hello, world!\n");
grep-2.txt:test-2.c: printf ("Hello, world!\n");
grep-2.txt:unix-20210423.tex: printf ("Hello, world!\n");
grep: test: Ist ein Verzeichnis
test-1.c: printf ("Hello, world!\n");
test-2.c: printf ("Hello, world!\n");
unix-20210423.tex: printf ("Hello, world!\n");
unix-20210423.tex: cassini/.../ainf/20131031.0> ¡grep printf *.c¿
unix-20210423.tex: philosophy.c: printf ("The answer is %d.\n", answer ());
cassini/home/peter/bo/2021ss/bs/20210423> grep "^printf" *
grep: test: Ist ein Verzeichnis
cassini/home/peter/bo/2021ss/bs/20210423> grep -R "^printf" *
cassini/home/peter/bo/2021ss/bs/20210423> grep -R "^ *printf" *
test-1.c: printf ("Hello, world!\n");
test-2.c: printf ("Hello, world!\n");
unix-20210423.tex: printf ("Hello, world!\n");
cassini/home/peter/bo/2021ss/bs/20210423>
cassini/home/peter/bo/2021ss/bs/20210423> grep 2013 unix-20210423.tex
% Copyright (C) 2013, 2015, 2016, 2017, 2018, 2021 Peter Gerwinski
./2013ss/net/script/slides/net-probeklausur-20120712.tex
./2013ss/net/20130924.0/net-klausur-20130924.tex
./2012ss/hs/20130318.0/hs-klausur-20130318.tex
2011ws 2012ws 2013ws doc misc projekte
2012ss 2013ss briefe material orga
cassini/home/peter/bo/2013ss/net/script> ¡cd /usr/bin¿
cassini/.../ainf/20131031.0> ¡grep printf *.c¿
phoenix/home/peter/bo/2013ws/ainf/20131031.0> ¡ls -l¿
cassini/home/peter/bo/2013ws/systech/20131008.0> ¡cat test¿
ls -l systech-20131008.*
cassini/home/peter/bo/2013ws/systech/20131008.0> ¡chmod +x test¿
cassini/home/peter/bo/2013ws/systech/20131008.0> ¡ls -l test¿
cassini/home/peter/bo/2013ws/systech/20131008.0> ¡./test¿
-rw-r--r-- 1 peter peter 4120 Okt 6 16:44 systech-20131008.aux
./20131031.0/orbit-x.c
./20131031.0/orbit-x1.c
./20131031.0/orbit-x
./20131107.0/orbit-x.c
./20131107.0/orbit-x1.c
./20131107.0/orbit-x
./20131031.0/orbit-x
./20131107.0/orbit-x
-rwxr-xr-x 1 peter peter 15831 Okt 31 13:19 ./20131031.0/orbit-x
-rwxr-xr-x 1 peter peter 15831 Okt 31 13:19 ./20131107.0/orbit-x
rtech-20131002.pdf
-rw-r--r-- 1 peter peter 6753149 Okt 1 22:59 rtech-20131002.pdf
cassini/home/peter/bo/2021ss/bs/20210423>
cassini/home/peter/bo/2021ss/bs/20210423> grep 2013 unix-20210423.tex
% Copyright (C) 2013, 2015, 2016, 2017, 2018, 2021 Peter Gerwinski
./2013ss/net/script/slides/net-probeklausur-20120712.tex
./2013ss/net/20130924.0/net-klausur-20130924.tex
./2012ss/hs/20130318.0/hs-klausur-20130318.tex
2011ws 2012ws 2013ws doc misc projekte
2012ss 2013ss briefe material orga
cassini/home/peter/bo/2013ss/net/script> ¡cd /usr/bin¿
cassini/.../ainf/20131031.0> ¡grep printf *.c¿
phoenix/home/peter/bo/2013ws/ainf/20131031.0> ¡ls -l¿
cassini/home/peter/bo/2013ws/systech/20131008.0> ¡cat test¿
ls -l systech-20131008.*
cassini/home/peter/bo/2013ws/systech/20131008.0> ¡chmod +x test¿
cassini/home/peter/bo/2013ws/systech/20131008.0> ¡ls -l test¿
cassini/home/peter/bo/2013ws/systech/20131008.0> ¡./test¿
-rw-r--r-- 1 peter peter 4120 Okt 6 16:44 systech-20131008.aux
./20131031.0/orbit-x.c
./20131031.0/orbit-x1.c
./20131031.0/orbit-x
./20131107.0/orbit-x.c
./20131107.0/orbit-x1.c
./20131107.0/orbit-x
./20131031.0/orbit-x
./20131107.0/orbit-x
-rwxr-xr-x 1 peter peter 15831 Okt 31 13:19 ./20131031.0/orbit-x
-rwxr-xr-x 1 peter peter 15831 Okt 31 13:19 ./20131107.0/orbit-x
rtech-20131002.pdf
-rw-r--r-- 1 peter peter 6753149 Okt 1 22:59 rtech-20131002.pdf
cassini/home/peter/bo/2021ss/bs/20210423> grep "2013[01][0-9][0-3][0-9].[a-z]*" unix-20210423.tex
./2013ss/net/20130924.0/net-klausur-20130924.tex
./2012ss/hs/20130318.0/hs-klausur-20130318.tex
cassini/.../ainf/20131031.0> ¡grep printf *.c¿
phoenix/home/peter/bo/2013ws/ainf/20131031.0> ¡ls -l¿
cassini/home/peter/bo/2013ws/systech/20131008.0> ¡cat test¿
ls -l systech-20131008.*
cassini/home/peter/bo/2013ws/systech/20131008.0> ¡chmod +x test¿
cassini/home/peter/bo/2013ws/systech/20131008.0> ¡ls -l test¿
cassini/home/peter/bo/2013ws/systech/20131008.0> ¡./test¿
-rw-r--r-- 1 peter peter 4120 Okt 6 16:44 systech-20131008.aux
./20131031.0/orbit-x.c
./20131031.0/orbit-x1.c
./20131031.0/orbit-x
./20131107.0/orbit-x.c
./20131107.0/orbit-x1.c
./20131107.0/orbit-x
./20131031.0/orbit-x
./20131107.0/orbit-x
-rwxr-xr-x 1 peter peter 15831 Okt 31 13:19 ./20131031.0/orbit-x
-rwxr-xr-x 1 peter peter 15831 Okt 31 13:19 ./20131107.0/orbit-x
rtech-20131002.pdf
-rw-r--r-- 1 peter peter 6753149 Okt 1 22:59 rtech-20131002.pdf
cassini/home/peter/bo/2021ss/bs/20210423> grep "[a-z-]*-2013[01][0-9][0-3][0-9].[a-z]*" unix-20210423.tex
./2013ss/net/20130924.0/net-klausur-20130924.tex
./2012ss/hs/20130318.0/hs-klausur-20130318.tex
ls -l systech-20131008.*
-rw-r--r-- 1 peter peter 4120 Okt 6 16:44 systech-20131008.aux
rtech-20131002.pdf
-rw-r--r-- 1 peter peter 6753149 Okt 1 22:59 rtech-20131002.pdf
cassini/home/peter/bo/2021ss/bs/20210423> grep -o "[a-z-]*-2013[01][0-9][0-3][0-9].[a-z]*" unix-20210423.tex
net-klausur-20130924.tex
hs-klausur-20130318.tex
systech-20131008.
systech-20131008.aux
rtech-20131002.pdf
rtech-20131002.pdf
cassini/home/peter/bo/2021ss/bs/20210423>
cassini/home/peter/bo/2021ss/bs/20210423> grep -o "[a-z-]*-2013[01][0-9][0-3][0-9].[a-z]*" unix-20210423.tex
net-klausur-20130924.tex
hs-klausur-20130318.tex
systech-20131008.
systech-20131008.aux
rtech-20131002.pdf
rtech-20131002.pdf
cassini/home/peter/bo/2021ss/bs/20210423> grep -o "[a-z-]*-2013[01][0-9][0-3][0-9].[a-z][a-z]*" unix-20210423.tex
net-klausur-20130924.tex
hs-klausur-20130318.tex
systech-20131008.aux
rtech-20131002.pdf
rtech-20131002.pdf
cassini/home/peter/bo/2021ss/bs/20210423> grep -o "[a-z-]*-2013[01][0-9][0-3][0-9].[a-z]\+" unix-20210423.tex
net-klausur-20130924.tex
hs-klausur-20130318.tex
systech-20131008.aux
rtech-20131002.pdf
rtech-20131002.pdf
cassini/home/peter/bo/2021ss/bs/20210423> grep -E -o "[a-z-]*-2013[01][0-9][0-3][0-9].[a-z]+" unix-20210423.tex
net-klausur-20130924.tex
hs-klausur-20130318.tex
systech-20131008.aux
rtech-20131002.pdf
rtech-20131002.pdf
cassini/home/peter/bo/2021ss/bs/20210423>
grep: test: Ist ein Verzeichnis
grep-1.txt
grep-2.txt
grep-3.txt
iostreams-3.txt
iostreams-4.txt
grep: test: Ist ein Verzeichnis
test-1.c
test-2.c
unix-20210423.tex
grep-1.txt
grep-2.txt
grep-3.txt
test-1.c
test-2.c
unix-20210423.tex
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment