web-dev-qa-db-ja.com

gitソースのクローン作成を自動化するLinuxシェルスクリプト

Gitソースのクローン作成を自動化できるシェルスクリプトを作成しようとしています。コードを以下に示します。

#!/bin/sh
mkdir /home/my-username/git-sources
cd home/my-username/git-sources

read gitsource

git clone $gitsource

echo "Please choose from the options bellow"

echo "1)Go back to your working directory"
echo "2) GO to the 'git-sources' folder"

read ans
back="1"
stay="2"
if [$ans == $back]; then
      cd -
Elif [$ans == $stay]; then
      cd /home/my-username/git-sources
fi

私の問題は12行目から始まります。ユーザーが自分の作業ディレクトリに戻りたいかどうかをユーザーが選択できるようにしたいのですが、20行目と22行目に、コマンドが見つからなかったというエラーが表示されます。

./git-installer.sh: line 20: [1: command not found
./git-installer.sh: line 21: [1: command not found
2

このスクリプトには多くの問題があります。まず、shellcheckのようなlintに似たツールであるShellのようなツールがそれについて何を伝えているかを確認しましょう。

$ ~/.cabal/bin/shellcheck git-installer.sh

In git-installer.sh line 17:
if [$ans == $back]; then
^-- SC1009: The mentioned parser error was in this if expression.
   ^-- SC1035: You need a space after the [ and before the ].
   ^-- SC1073: Couldn't parse this test expression.
                  ^-- SC1020: You need a space before the ].
                  ^-- SC1072: Missing space before ]. Fix any mentioned problems and try again.

これがエラーの原因であり、エラーを回避するために何をすべきかを示しています。スクリプトが次のようになるように、各角括弧の前後に空白を追加する必要があります。

#!/bin/sh
mkdir /home/my-username/git-sources
cd home/my-username/git-sources

read gitsource

git clone $gitsource

echo "Please choose from the options bellow"

echo "1)Go back to your working directory"
echo "2) GO to the 'git-sources' folder"

read ans
back="1"
stay="2"
if [ $ans == $back ]; then
      cd -
Elif [ $ans == $stay ]; then
      cd /home/my-username/git-sources
fi

しかし、shellcheckはまだ満足していません。

$ ~/.cabal/bin/shellcheck git-installer.sh

In git-installer.sh line 3:
cd home/my-username/git-sources
^-- SC2164: Use cd ... || exit in case cd fails.


In git-installer.sh line 5:
read gitsource
^-- SC2162: read without -r will mangle backslashes.


In git-installer.sh line 7:
git clone $gitsource
          ^-- SC2086: Double quote to prevent globbing and Word splitting.


In git-installer.sh line 14:
read ans
^-- SC2162: read without -r will mangle backslashes.


In git-installer.sh line 17:
if [ $ans == $back ]; then
     ^-- SC2086: Double quote to prevent globbing and Word splitting.
          ^-- SC2039: In POSIX sh, == in place of = is undefined.


In git-installer.sh line 18:
      cd -
      ^-- SC2164: Use cd ... || exit in case cd fails.


In git-installer.sh line 19:
Elif [ $ans == $stay ]; then
       ^-- SC2086: Double quote to prevent globbing and Word splitting.
            ^-- SC2039: In POSIX sh, == in place of = is undefined.


In git-installer.sh line 20:
      cd /home/my-username/git-sources
      ^-- SC2164: Use cd ... || exit in case cd fails.

shellcheckによって報告されたすべてのエラーと警告を修正する以外に、このスクリプトをもう少し改善することができます。

"$HOME"の代わりにプレーンでシンプルな/home/my-usernameを使用して、ユーザーごとにスクリプトが機能するようにすることができます。

また、上部のmkdirは、ディレクトリがまだ存在しない場合にのみ実行する必要があります。それ以外の場合は、File existsエラーが発生します。

ユーザーからの入力を期待していることをユーザーに伝える小さなプロンプトを出力するのは良いことです。

cdを実行するには、おそらく想像どおり、このスクリプトを実行する代わりに、このスクリプトをsourceする必要があることにも注意してください。そうは言っても、ニーズに合わせて作成した変数の設定を解除することで、ユーザー環境を整理する必要があります。

要約すると、次のようになります。

#!/bin/sh

if [ ! -d "$HOME"/git-sources ]; then
    mkdir "$HOME"/git-sources
fi

cd "$HOME"/git-sources || { printf "cd failed, exiting\n" >&2;  return 1; }

printf "Gitsource: "
read -r gitsource

git clone "$gitsource"

unset gitsource

echo "Please choose from the options bellow"

echo "1) Go back to your working directory"
echo "2) Go to the 'git-sources' folder"

read -r ans
back="1"
stay="2"
if [ "$ans" = "$back" ]; then
      cd - || { printf "cd failed, exiting\n" >&2; unset ans; return 1; }
Elif [ "$ans" = "$stay" ]; then
      cd "$HOME"/git-sources || { printf "cd failed, exiting\n" >&2; unset ans; return 1; }
fi

unset ans

ソース:

$ . git-installer.sh
Gitsource: https://github.com/antirez/linenoise
Cloning into 'linenoise'...
remote: Counting objects: 396, done.
remote: Total 396 (delta 0), reused 0 (delta 0), pack-reused 396
Receiving objects: 100% (396/396), 114.69 KiB | 0 bytes/s, done.
Resolving deltas: 100% (232/232), done.
Checking connectivity... done.
Please choose from the options bellow
1) Go back to your working directory
2) Go to the 'git-sources' folder
2
$ pwd
/home/ja/git-sources
$ ls -Al
total 4
drwxr-xr-x 3 ja users 4096 Dec 25 22:48 linenoise
3