diff --git a/01-nawigacja.md b/01-nawigacja.md index 85b7e219..17f2b38b 100644 --- a/01-nawigacja.md +++ b/01-nawigacja.md @@ -24,3 +24,5 @@ * bezwzględne - względem katalogu głównego, zaczynają się od `/` * względne - względem aktualnego katalogu (`pwd`) +Hello Coders School +Hello diff --git a/02-operacje-na-plikach.md b/02-operacje-na-plikach.md index 188ffde9..b43d5804 100644 --- a/02-operacje-na-plikach.md +++ b/02-operacje-na-plikach.md @@ -24,3 +24,6 @@ Tip. Użyj `ls -l` aby to sprawdzić. #### Zadanie 2 Odkryj co zrobi `mkdir` jeśli podany katalog już istnieje. +Hello Coders School +Hello1 +Halko School diff --git a/03-bash.md b/03-bash.md index f93992f0..f655bbbe 100644 --- a/03-bash.md +++ b/03-bash.md @@ -11,3 +11,4 @@ * Strzałki góra/dół - wyświetl poprzednią/następną komendę z historii * Ctrl + R - szukaj w historii wpisanych komend +Hello diff --git a/homework/linux.txt b/homework/linux.txt index e69de29b..6c8dbb03 100644 --- a/homework/linux.txt +++ b/homework/linux.txt @@ -0,0 +1,141 @@ +208 processes.txt +96:message+ 603 0.0 0.1 9952 6484 ? Ss 12:50 0:08 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only +99:root 620 0.0 0.5 42856 20764 ? Ss 12:50 0:00 /usr/bin/python3 /usr/bin/networkd-dispatcher --run-startup-triggers +114:root 708 0.0 0.5 121032 22576 ? Ssl 12:50 0:00 /usr/bin/python3 /usr/share/unattended-upgrades/unattended-upgrade-shutdown --wait-for-signal +115:whoopsie 806 0.0 0.3 253244 15644 ? Ssl 12:50 0:00 /usr/bin/whoopsie -f +119:root 984 0.1 0.0 358464 2228 ? Sl 12:50 0:20 /usr/bin/VBoxDRMClient +126:vboxuser 1342 0.0 0.4 961432 19840 ? S processes.txt + 316 ls -l + 317 less processes.txt + 318 fg + 319 top + 320 clear + 321 fg + 322 ps + 323 fg + 324 ps + 325 kill 27064 + 326 ps + 327 kill 27065 + 328 ps + 329 fg + 330 clear + 331 ps + 332 less processes.txt + 333 clear + 334 cp processes.txt copy.txt + 335 ls -l + 336 less copy.txt + 337 clear + 338 mkdir backup + 339 ls -l + 340 mv copy.txt backup + 341 ls -l + 342 cd backup/ + 343 ls -l + 344 cd .. + 345 cd backup/ + 346 less copy.txt + 347 clear + 348 cd .. + 349 man wc + 350 clear + 351 cd backup/ + 352 cd .. + 353 man wc + 354 clear + 355 wc -l processes.txt + 356 wc -l processes.txt > selected.txt + 357 ls -l + 358 less selected.txt + 359 man grep + 360 clear + 361 grep -n /bin * + 362 clear + 363 grep -n /bin * + 364 grep -n /bin * | less + 365 clear + 366 ls -l + 367 grep -n /bin processes.txt + 368 grep -n /bin processes.txt | less + 369 clear + 370 grep -n /bin processes.txt >> selected.txt + 371 ls -l + 372 less selected.txt + 373 clear + 374 history + 375 history | less + 376 clear + 377 man find + 378 man tail + 379 clear + 380 history less + 381 less history + 382 history | less + 383 clear + 384 ls -l + 385 find history -name | tail -n100 + 386 history | less + 387 clear + 388 man find + 389 clear + 390 find history | tail -n100 + 391 history | tail -n100 + 392 q + 393 clear + 394 history | tail -n100 | less + 395 history | tail -n103 | less + 396 history | tail -n105 | less + 397 history | tail -n105 | less > commands.txt + 398 ls -l + 399 less commands.txt + 400 clear + 401 man cat + 402 clear + 403 cat selected.txt commands.txt + 404 clear + 405 cat selected.txt commands.txt | less + 406 cat selected.txt commands.txt > result.txt + 407 history + 408 history | less + 409 history | tail -n116 > commands.txt +