0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

新卒6ヶ月のエンジニアがbashについて学んだ件

Posted at

自己紹介

久しぶりの記事投稿となってしまいました。研修が終了し、配属された現場に毎日出社しながらJava Silverの勉強をしていたらQiitaの投稿が疎かになってしまいました。今後は現場で学んだ内容をQiitaに投稿していきます。
前置きは終わりにして自己紹介します。文系未経験からIT業界に飛び込みました!現在はある金融系の案件に毎日出社しながら揉まれています!

bashとは

案件でbashという単語が出てきて調べたのでまとめます!
ちなみに初めて聞いた時自分は「bashって何?shellとどう違うの?」と思いました。

結論から言うとbashはshellの一部です!shellというコマンドの中にbashが含まれているイメージです。自分はそう理解しました。
bashは「Bourne Again Shell」を略したコマンド言語です。LinuxやUnix系のOSで普及しています。実際に書いてみると
まずファイルを作成します。

$ vi sample.sh

中身を作成します。

#!/bin/bash

echo"Hello,World"

exit 0
$ bash sample.sh

上記のコマンドで作成したファイルを出力すると

Hello,World

このように出力されます。
拡張子は「.sh」であり、シェルスクリプトの1つなんだなと理解する事ができました。
ちなみにシェルスクリプトの実行方法は他にも以下のものがあります。

$ sh sample.sh
$ ./sample.sh

まとめ

やっぱり調べて記事にするというのは深い理解につながります。
これからも学んだことを記事に投稿していきます!

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?