Skip to content

Commit b5b1d6f

Browse files
committed
[bash] move documentation link to the end
1 parent 46dd2bf commit b5b1d6f

File tree

18 files changed

+74
-73
lines changed

18 files changed

+74
-73
lines changed

bash.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ for the GNU operating system and as the default shell on most Linux distros.
2828
Nearly all examples below can be a part of a shell script
2929
or executed directly in the shell.
3030

31-
[Read more here.](https://www.gnu.org/software/bash/manual/bashref.html)
32-
3331
```bash
3432
#!/usr/bin/env bash
3533
# First line of the script is the shebang which tells the system how to execute
@@ -526,3 +524,5 @@ info bash 'Bash Features'
526524
info bash 6
527525
info --apropos bash
528526
```
527+
528+
For more, see the [Bash documentation](https://www.gnu.org/software/bash/manual/bashref.html).

de/bash.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ translators:
99
Bash ist der Name der Unix-Shell, die als Shell des GNU-Betriebssystems und auch als Standard-Shell von Linux und macOS ausgeliefert wurde.
1010
Beinahe alle der folgenden Beispiele können als Teile eines Shell-Skripts oder direkt in der Shell ausgeführt werden.
1111

12-
[Weitere Informationen \(Englisch\)](http://www.gnu.org/software/bash/manual/bashref.html)
13-
1412
```bash
1513
#!/bin/bash
1614
# Die erste Zeile des Scripts nennt sich Shebang, dies gibt dem System an,
@@ -277,3 +275,5 @@ info bash 'Bash Features'
277275
info bash 6
278276
info --apropos bash
279277
```
278+
279+
[Weitere Informationen \(Englisch\)](https://www.gnu.org/software/bash/manual/bashref.html)

el/bash.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ contributors:
99
προγράμματος τερματικού (shell script) ή να εκτελεσθούν απευθείας από τον
1010
τερματικό.
1111

12-
[Διαβάστε περισσότερα εδώ.](http://www.gnu.org/software/bash/manual/bashref.html)
13-
1412
```bash
1513
#!/usr/bin/env bash
1614
# Η πρώτη γραμμή του προγράμματος είναι το shebang που υποδεικνύει στο σύστημα
@@ -195,7 +193,7 @@ then
195193
fi
196194
# Να σημειωθεί πως ο τελεστής `=~` δουλεύει μόνο με διπλές αγκύλες [[ ]],
197195
# που είναι ωστόσο διαφορετικές από τις μονές [ ].
198-
# Δείτε το http://www.gnu.org/software/bash/manual/bashref.html#Conditional-Constructs
196+
# Δείτε το https://www.gnu.org/software/bash/manual/bashref.html#Conditional-Constructs
199197
# για περισσότερες πληροφορίες σχετικά με αυτό.
200198

201199
# Επαναπροσδιορισμός της εντολής `ping` ως alias (ψευδώνυμο) για την αποστολή 5
@@ -522,3 +520,5 @@ info bash 'Bash Features'
522520
info bash 6
523521
info --apropos bash
524522
```
523+
524+
[Διαβάστε περισσότερα εδώ.](https://www.gnu.org/software/bash/manual/bashref.html)

es/bash.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ el shell del sistema operativo GNU. También es el shell
1717
por defecto de Linux y macOS. Casi todos los ejemplos abajo pueden
1818
ser parte de un script shell o ser ejecutados directamente en la terminal.
1919

20-
[Leer más aquí.](http://www.gnu.org/software/bash/manual/bashref.html)
21-
2220
```bash
2321
#!/bin/bash
2422

@@ -190,3 +188,5 @@ uniq -d file.txt
190188
# imprime sólo la primera columna antes de cada ',' en el archivo|
191189
cut -d ',' -f 1 file.txt
192190
```
191+
192+
[Leer más aquí.](https://www.gnu.org/software/bash/manual/bashref.html)

fr/bash.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ d’exploitation GNU et est le shell par défaut sur Linux et macOS.
1818
Presque tous les exemples ci-dessous peuvent être écrits dans un script shell
1919
ou exécutés directement dans le terminal.
2020

21-
[Plus d’informations ici.](http://www.gnu.org/software/bash/manual/bashref.html)
22-
2321
```bash
2422
#!/bin/bash
2523
# La première ligne du script s’appelle le « shebang », elle indique au système
@@ -314,3 +312,5 @@ grep -c "^foo.*bar$" fichier.txt
314312
# l’expression rationnelle, utilisez fgrep (ou grep -F)
315313
fgrep "^foo.*bar$" fichier.txt
316314
```
315+
316+
[Plus d’informations ici.](https://www.gnu.org/software/bash/manual/bashref.html)

it/bash.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ translators:
2121
Bash è il nome della shell di unix, la quale è stata distribuita anche come shell del sistema oprativo GNU e la shell di default su Linux e macOS.
2222
Quasi tutti gli esempi sottostanti possono fare parte di uno shell script o eseguiti direttamente nella shell.
2323

24-
[Per saperne di più.](http://www.gnu.org/software/bash/manual/bashref.html)
25-
2624
```bash
2725
#!/bin/bash
2826
# La prima riga dello script è lo shebang il quale dice al sistema come eseguire
@@ -145,7 +143,7 @@ fi
145143
# L'operatore =~ funziona solo dentro alle doppie parentesi quadre [[ ]],
146144
# che hanno un comportamento leggermente diverso rispetto alle singole [ ].
147145
# Se vuoi approfondire, visita questo link (in inglese):
148-
# http://www.gnu.org/software/bash/manual/bashref.html#Conditional-Constructs
146+
# https://www.gnu.org/software/bash/manual/bashref.html#Conditional-Constructs
149147

150148
# Usando `alias`, puoi definire nuovi comandi o modificare quelli già esistenti.
151149
# Ad esempio, così puoi ridefinire il comando ping per inviare solo 5 pacchetti
@@ -387,3 +385,5 @@ info bash 'Bash Features'
387385
info bash 6
388386
info --apropos bash
389387
```
388+
389+
[Per saperne di più.](https://www.gnu.org/software/bash/manual/bashref.html)

ja/bash.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ Bash はunixシェルの1つです。GNUオペレーションシステムのシ
1212
LinuxやMac OS Xの、デフォルトシェルにもなっています。
1313
以下にある例は、ほぼ全部シェルスクリプトの一部として使えます。また、一部はそのままシェルから実行できます。
1414

15-
[ちゃんとした説明は、こちらをどうぞ](http://www.gnu.org/software/bash/manual/bashref.html)
16-
1715
```bash
1816
#!/bin/bash
1917
# 最初の行はShebang(シェバング、シバン)というもので、システムに対して何を使って実行するのかを教えるためのものです
@@ -165,3 +163,5 @@ uniq -d file.txt
165163
# 1行ごとに、','が最初に出てくる前の部分を表示します
166164
cut -d ',' -f 1 file.txt
167165
```
166+
167+
[ちゃんとした説明は、こちらをどうぞ](https://www.gnu.org/software/bash/manual/bashref.html)

ko/bash.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ translators:
2020
Bash는 유닉스 셸의 이름이며, 리눅스와 맥 OS X의 기본 셸로 그리고 GNU 운영체제를 위한 셸로서 배포되었습니다.
2121
이하의 거의 모든 예시들은 셸 스크립트의 일부이거나 셸에서 바로 실행할 수 있습니다.
2222

23-
[(영어) 이곳에서 더 알아보세요.](http://www.gnu.org/software/bash/manual/bashref.html)
24-
2523
```bash
2624
#!/bin/bash
2725
# 스크립트의 첫 줄은 시스템에게 스크립트의 실행법을 알려주는 '셔뱅'입니다.
@@ -376,3 +374,5 @@ info bash 'Bash Features'
376374
info bash 6
377375
info --apropos bash
378376
```
377+
378+
[(영어) 이곳에서 더 알아보세요.](https://www.gnu.org/software/bash/manual/bashref.html)

ms/bash.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ translators:
1515

1616
Bash adalah nama daripada unix shell, yang mana telah diagihkan sebagai shell untuk sistem operasi GNU dan sebagai shell lalai pada Linux dan macOS. Hampir semua contoh di bawah boleh menjadi sebahagian daripada skrip shell atau dijalankan terus dalam shell.
1717

18-
[Baca lebih lanjut di sini.](http://www.gnu.org/software/bash/manual/bashref.html)
19-
2018
```bash
2119
#!/bin/bash
2220
# Baris pertama daripada skrip ialah shebang yang mana memberitahu sistem bagaimana untuk melaksana
@@ -278,3 +276,5 @@ info bash 'Bash Features'
278276
info bash 6
279277
info --apropos bash
280278
```
279+
280+
[Baca lebih lanjut di sini.](https://www.gnu.org/software/bash/manual/bashref.html)

nl/bash.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ translators:
1616
Bash is de naam van de unix shell, deze wordt gebruikt voor het GNU operating system en is de standaard shell op Linux en macOS.
1717
Bijna alle voorbeelden hieronder kunnen deel uitmaken van een shell script of kunnen uitgevoerd worden in de shell.
1818

19-
[Lees er meer over hier.](http://www.gnu.org/software/bash/manual/bashref.html)
20-
2119
```bash
2220
#!/bin/bash
2321
# De eerste lijn in het schript is shebang, deze laat het systeem weten hoe
@@ -229,3 +227,5 @@ info bash 'Bash Features'
229227
info bash 6
230228
info --apropos bash
231229
```
230+
231+
[Lees er meer over hier.](https://www.gnu.org/software/bash/manual/bashref.html)

0 commit comments

Comments
 (0)