Skip to Content
マスタリングLinuxシェルスクリプト 第2版 ―Linuxコマンド、bashスクリプト、シェルプログラミング実践入門
book

マスタリングLinuxシェルスクリプト 第2版 ―Linuxコマンド、bashスクリプト、シェルプログラミング実践入門

by Mokhtar Ebrahim, Andrew Mallett, 萬谷 暢崇, 原 隆文
December 2022
Intermediate to advanced
400 pages
4h 27m
Japanese
O'Reilly Japan, Inc.
Content preview from マスタリングLinuxシェルスクリプト 第2版 ―Linuxコマンド、bashスクリプト、シェルプログラミング実践入門

付録B練習問題の解答

1章 bashのスクリプトとは何か、なぜそれが必要なのか?

  • 1-1次のコードの問題点は何でしょうか? また、どのように直したらよいでしょうか?
    #!/bin/bash
    var1 ="Welcome to bash scripting ..."
    echo $var1
    

2行目に誤りがあります。変数宣言の中にスペースを入れてはいけません。

#!/bin/bash
var1="Welcome to bash scripting ..."
echo $var1
  • 1-2次のコードは、どのような結果になるでしょうか?
    #!/bin/bash
    arr1=(Saturday Sunday Monday Tuesday Wednesday)
    echo ${arr1[3]}
    

配列はゼロから始まるので、結果は「Tuesday」になります。

  • 1-3次のコードの問題点は何でしょうか? また、どのように直したらよいでしょうか?
    #!/bin/bash
    files = 'ls -la'
    echo $files
    

ここでは2つの誤りがあります。1つは変数宣言内のスペースです。もう1つは、単一引用符を使っていることです。単一引用符の代わりにバッククォートを使わなければいけません。

解決策
#!/bin/bash
files=`ls -la`
echo $files
  • 1-4次のコードで、変数bcの値は何になるでしょうか?
    #!/bin/bash
    a=15
    b=20
    c=a
    b=c
    

変数bの値は「c」になり、cの値は「a」になります。

代入している行でドル記号を使っていないので、変数は整数の値ではなく文字の値を取ります。

2章 インタラクティブなスクリプトの作成 ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

プログラミングRust 第2版

プログラミングRust 第2版

Jim Blandy, Jason Orendorff, Leonora F. S. Tindall, 中田 秀基
仕事ではじめる機械学習 第2版

仕事ではじめる機械学習 第2版

有賀 康顕, 中山 心太, 西林 孝
バイオインフォマティクスデータスキル ―オープンソースツールを使ったロバストで再現性のある研究

バイオインフォマティクスデータスキル ―オープンソースツールを使ったロバストで再現性のある研究

Vince Buffalo, 片山 俊明, 川島 秀一, 鈴木 治夫, 山本 泰智, 酒匂 寛, 山村 吉信
詳説 イーサネット 第2版

詳説 イーサネット 第2版

Charles E. Spurgeon, Joann Zimmerman, 三浦 史光, 豊沢 聡

Publisher Resources

ISBN: 9784814400119Other