1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-09-03 11:43:12 +02:00

[bash] move documentation link to the end

This commit is contained in:
Boris Verkhovskiy
2025-08-23 19:41:13 -06:00
parent 46dd2bf2be
commit b5b1d6f99f
18 changed files with 74 additions and 73 deletions

View File

@@ -12,8 +12,6 @@ Bash はunixシェルの1つです。GNUオペレーションシステムのシ
LinuxやMac OS Xの、デフォルトシェルにもなっています。
以下にある例は、ほぼ全部シェルスクリプトの一部として使えます。また、一部はそのままシェルから実行できます。
[ちゃんとした説明は、こちらをどうぞ](http://www.gnu.org/software/bash/manual/bashref.html)
```bash
#!/bin/bash
# 最初の行はShebang(シェバング、シバン)というもので、システムに対して何を使って実行するのかを教えるためのものです
@@ -165,3 +163,5 @@ uniq -d file.txt
# 1行ごとに、','が最初に出てくる前の部分を表示します
cut -d ',' -f 1 file.txt
```
[ちゃんとした説明は、こちらをどうぞ](https://www.gnu.org/software/bash/manual/bashref.html)