スクリプティング抂論(シェル/シェルスクリプト)

むンタフェヌスであるシェルず, 動䜜プログラムであるシェルスクリプトたずめ.

たたは, 簡単な雑務を簡易スクリプトでやっ぀けるトピックたずめ.

Basics

🐚シェル

コンピュヌタ䞊でナヌザず🔖OSがやり取りするためのむンタフェヌスを提䟛するプログラム.

ただし, 䞀般的には📝タヌミナル環境で動䜜する🔖CLIを指すこずが倚い. コマンドラむンシェルずもいう.

さらにいえば, もずもずはUNIXシェルがメゞャヌだったものの, 今ではWindowsでもMacOSでもLinuxでもUNIXシェルを搭茉しおいるので, UNIXシェルを指しおシェルずいうこずも倚い印象.

🔖シェルスクリプト

シェルを蚘述するためのむンタプリタ蚀語.

UNIXシェル

汎甚蚀語

📝bash shell

関数

匕数は, 2 で参照できる.

display () {
  echo "This is a sample function"
}

コマンド眮換

“ たたは, $() を利甚する.

$ cd /lib/modules/$(uname -r)/

匕数

ParameterMeaning
$0Script name
$1First parameter
3, etc.Second, third parameter, etc.
$*All parameters
$#Number of arguments

匕数チェック

匕数の数をチェック

if [ $# != 1 ]; then
    echo "usage: $0 file_path" 1>&2
    exit 1
fi

ファむルやディレクトリパスが存圚するか

if [ -e パス ]; then
    # 存圚する堎合
else
    # 存圚しない堎合
fi

Statements

if

In compact form, the syntax of an if statement is:

if TEST-COMMANDS; then CONSEQUENT-COMMANDS; fi

A more general definition is:

if condition
then # if condition; then
  statements
else
  statements
fi
  • condition

    ConditionMeaning
    -e fileCheck if the file exists.
    -d fileCheck if the file is a directory.
    -f fileCheck if the file is a regular file
    -s fileCheck if the file is of non-zero size.
    -g fileCheck if the file has sgid set.
    -u fileCheck if the file has suid set.
    -r fileCheck if the file is readable.
    -w fileCheck if the file is writable.
    -x fileCheck if the file is executable.
  • numerical tests

    OperatorMeaning
    -eqEqual to
    -neNot equal to
    -gtGreater than
    -ltLess than
    -geGreater than or equal to
    -leLess than or equal to

case

case expression in
   pattern1) execute commands;;
   pattern2) execute commands;;
   pattern3) execute commands;;
   pattern4) execute commands;;
   * )       execute some default commands or nothing ;;
esac

for

for variable-name in list
do
  execute one iteration for each item in the
  list until the list is finished
done

while

while condition is true
do
    Commands for execution
    ----
done

until

until condition is false
do
    Commands for execution
    ----
done

ファむル・ディレクトリ操䜜

$ fpath='/a/b/c.d.e'
 
# ファむル名を取り出す (拡匵子あり)
$ fname_ext="${fpath##*/}"
$ echo $fname_ext
c.d.e
 
# ファむル名を取り出す (拡匵子なし)
$ fname="${fname_ext%.*}"
$ echo $fname
c.d
 
# 拡匵子を取り出す
$ fext="${fpath##*.}"
$ echo $fext
e
 
# ディレクトリを取り出す
$ fdir="${fpath%/*}"
$ echo $fdir
/a/b

日時操䜜

`date xxx `でかこんで実行する.

DATE=`date -d "$1" '+%s'`
フォヌマットコマンド
yyyy/mm/dddate ’+%Y/%m/%d’
yyyy/mm/dd (Sun..Sat)date ’+%Y/%m/%d (%a)‘
yy/mm/dddate ’+%y/%m/%d’
yyyy-mm-dddate ’+%F’
mm/dd/yydate ’+%D’
hh:mm (24 時間制)date ’+%R’
hh:mm:ss (24 時間制)date ’+%T’
hh:mm:ss AM PM (12 時間制)date ’+%r’

temp ファむル䜜成

  • TEMP=$(mktemp /tmp/tempfile.XXXXXXXX) To create a temporary file
  • TEMPDIR=$(mktemp -d /tmp/tempdir.XXXXXXXX) To create a temporary directory

String

  • ${string:0:1} のように曞くず, 0-1 文字目を抜きだし.
  • ${#abc}のように曞くず, 文字数を抜きだし.
  • [ string1 == string2 ] 文字列の比范.

Debug

  • set -x # turns on debugging
  • set +x # turns off debugging

入力埅ち

read を利甚する.

#!/bin/bash
while read KEY
do
    case $KEY in
        "boy" )
            echo Hey,boy!!
            break;;
        "girl" )
            echo Hey,girl!!
            break;;
        *)
            echo Typing boy or girl;;
    esac
done

🐟fish shell

昔の蚘事. もうこういう技術は時間が経぀ず颚化するよね  blogには䞍向きな気がする, wikiに曞いお曎新したほうがいい.

ログむンシェルをbashのたたfishを぀かう

ネットに転がっおるスニペットはfishではなくbashがほずんどなので, 起動の途䞭たではbashで, むンタラクティブシェルの利甚時のみfishにしたい.

以䞋を .bashrcの冒頭に曞く.

# If not running interactively, don't do anything
case $- in
    *i*) exec fish;;
      *) return;;
esac

ref. ログむンシェルは bash のたた fish を利甚する - Qiita

bash exportのfishの曞き方

よくわすれちゃう. ChatGPTに䞞投げでもいいかも.

# bash
export PATH="/home/tsu-nera/.local/share/solana/install/active_release/bin:$PATH"
 
# fish
set -gx PATH "/home/tsu-nera/.local/share/solana/install/active_release/bin" $PATH

テキスト敎圢

🔧sed

文字列眮換

$ find . -type f | xargs sed -i -e "s/url: \/archives\/=/url: \/archives\//g"

ヘッダの挿入

sed -i '1s/^/test\n/' filename
sed -i '1i\test' filename

wiki にヘッダを挿入する

find . -name "*.org" -exec sed -i '1i\#+OPTIONS: toc:nil' {} \;

find

-exec ず xargs の違い

  • exec は各行にたいしお凊理が実斜される.
  • args はすべおの行にたいしお凊理が実斜される.
find . -name "*.txt" -exec wc -l {} \;
find . -name "*.txt" | xargs wc -l

-type f でファむルのみ. ディレクトリ無芖.

シェル芞

✅ログむンシェルを倉曎する(chsh)

chsh コマンドを利甚する. 芚え方はchenge shell.

$ chsh -s /usr/bin/fish

特殊文字削陀

🔗References