Skip to content

Commit a7f5e56

Browse files
committed
Use ~ rather than /home/<your_name>
This allows copy-pasting and doesn't require knowing the username.
1 parent f247da9 commit a7f5e56

File tree

13 files changed

+26
-26
lines changed

13 files changed

+26
-26
lines changed

cs/python_introduction/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -519,13 +519,13 @@ Pokud máš soubor uložen, je čas jej spustit! Pomocí dovedností, které jsi
519519
Na Macu bude příkaz vypadat přibližně takto:
520520

521521
```
522-
$ cd /Users/<your_name>/Desktop
522+
$ cd ~/Desktop
523523
```
524524

525525
Na Linuxu to bude vypadat takto (slovo "Desktop" (Plocha) může být přeloženo do tvého jazyka):
526526

527527
```
528-
$ cd /home/<your_name>/Desktop
528+
$ cd ~/Desktop
529529
```
530530

531531
A na Windows to bude vypadat takto:

en/python_introduction/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -585,14 +585,14 @@ On a Mac, the command will look something like this:
585585

586586
{% filename %}command-line{% endfilename %}
587587
```
588-
$ cd /Users/<your_name>/Desktop
588+
$ cd ~/Desktop
589589
```
590590

591591
On Linux, it will be like this (the word "Desktop" might be translated to your local language):
592592

593593
{% filename %}command-line{% endfilename %}
594594
```
595-
$ cd /home/<your_name>/Desktop
595+
$ cd ~/Desktop
596596
```
597597

598598
And on Windows, it will be like this:

es/python_introduction/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -464,12 +464,12 @@ Con el archivo guardado, ¡es hora de ejecutarlo! Utilizando las habilidades que
464464

465465
En una Mac, el comando se verá algo como esto:
466466

467-
cd /Users/<your_name>/Desktop
467+
cd ~/Desktop
468468

469469

470470
En Linux, va a ser así (la palabra "Desktop" puede estar traducida a tu idioma):
471471

472-
cd /home/<your_name>/Desktop
472+
cd ~/Desktop
473473

474474

475475
Y en Windows, será así:

fr/python_introduction/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -519,12 +519,12 @@ Une fois que le fichier est sauvegardé, vous pouvez le lancer ! En utilisant le
519519

520520
Sur Mac, ça ressemblera à :
521521

522-
$ cd /Users/<your_name>/Desktop
522+
$ cd ~/Desktop
523523

524524

525525
Sous Linux, comme ça (il se peut que le mot Bureau soit dans une autre langue) :
526526

527-
$ cd /home/<your_name>/Desktop
527+
$ cd ~/Desktop
528528

529529

530530
Et sous Windows, ce sera comme ça :

hu/python_introduction/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -477,12 +477,12 @@ Most hogy a fájl el van mentve, itt az ideje, hogy lefuttassuk. Felhaszálva a
477477

478478
Mac-en a parancs valahogy így néz ki:
479479

480-
$ cd /Users/<your_name>/Desktop
480+
$ cd ~/Desktop
481481

482482

483483
Linuxon így (A "Desktop" lehet, hogy le van fordítva a te nyelvedre):
484484

485-
$ cd /home/<your_name>/Desktop
485+
$ cd ~/Desktop
486486

487487

488488
És Windowson így néz ki:

it/python_introduction/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -479,12 +479,12 @@ Ora dobbiamo salvare il file e dargli un nome descrittivo. Chiama il file **pyth
479479

480480
Su un Mac, il comando assomiglierà a questo:
481481

482-
$ cd /Users/<your_name>/Desktop
482+
$ cd ~/Desktop
483483

484484

485485
Su Linux, sarà come questo (la parola "Desktop" potrebbe essere tradotta nella tua lingua):
486486

487-
$ cd /home/<your_name>/Desktop
487+
$ cd ~/Desktop
488488

489489

490490
E su windows, sara come questo:

ko/python_introduction/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -477,12 +477,12 @@ Boolean도 변수로 사용할 수도 있습니다! 다음을 보세요. :
477477

478478
맥이라면 명령어는 다음과 같을 것입니다. :
479479

480-
cd /Users/<your_name>/Desktop
480+
cd ~/Desktop
481481

482482

483483
리눅스는 다음과 같아요. ("Desktop"이라는 문자는 해당 국어로 번역되어 있을 것에요. 한국어라면 "데스크탑" 또는 "바탕화면"으로 번역되어 있을 것입니다.)
484484

485-
cd /home/<your_name>/Desktop
485+
cd ~/Desktop
486486

487487
또는 "바탕화면"으로 번역되어 있다면
488488
cd /home/<your_name>/바탕화면

pl/python_introduction/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -478,12 +478,12 @@ Mamy już zapisany plik, a więc czas go uruchomić! Wykorzystując wiadomości
478478

479479
Na Macu polecenie będzie wyglądać mniej-więcej tak:
480480

481-
$ cd /Users/<your_name>/Desktop
481+
$ cd ~/Desktop
482482

483483

484484
W Linuksie będzie tak (słowo "Desktop" może zostać przetłumaczone na polski jako "Pulpit"):
485485

486-
$ cd /home/<your_name>/Desktop
486+
$ cd ~/Desktop
487487

488488

489489
A w systemie Windows będzie to wyglądać tak:

pt/python_introduction/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -459,12 +459,12 @@ Com o arquivo salvo, é hora de executá-lo! Usando as habilidades que você apr
459459

460460
Em um Mac, o comando será parecido com isto:
461461

462-
cd /Users/<your_name>/Desktop
462+
cd ~/Desktop
463463

464464

465465
No Linux, será assim (a palavra "Desktop" pode ser traduzido para seu idioma):
466466

467-
cd /home/<your_name>/Desktop
467+
cd ~/Desktop
468468

469469

470470
E no windows, vai ser assim:

ru/python_introduction/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -477,12 +477,12 @@ print('Hello, Django girls!')
477477

478478
Для Mac команда будет выглядеть так:
479479

480-
$ cd /Users/<your_name>/Desktop
480+
$ cd ~/Desktop
481481

482482

483483
Для Linux (слово "Desktop" может быть переведено на твой язык, например "Рабочий стол"):
484484

485-
$ cd /home/<your_name>/Desktop
485+
$ cd ~/Desktop
486486

487487

488488
И для windows:

0 commit comments

Comments
 (0)