ヒストリー機能の使い方 (history) 覚えておくと案外役に立つ bash の history 機能の使い方いろいろ | 俺的備忘録 〜なんかいろいろ〜 bash の履歴展開を堪能する | ザリガニが見ていたR […]
Articles Tagged: Bash
コマンドライン補完を使う方法 (bash-completion) [Bash]
コマンドライン補間 bash-completion scop/bash-completion: Programmable completion functions for bash – GitHub 使い方 […]
while 文の使い方 [Bash]
while 文の使い方 while [ -n “$1” ]; do echo “$1” shift done Bash でいろいろループする – Qiita while 文の使用方法 | UNIX & […]
設定 (.bashrc / .bash_profile) [Bash]
設定 .bash_profile と .bashrc のまとめ – Qiita .bash_profile ? .bashrc ? いろいろあるけどこいつらなにもの? – Qiita ユーザーの環 […]
パスの取り扱い [Bash]
使い方 パスからファイル名を取得するには、basename コマンドを使う。 $ basename “/foo/bar/baz.ext” baz.ext パスからディレクトリを取得するには、dirname コマンドを使う […]
文字列の操作 [Bash]
使い方 Bash String Manipulation Examples – Length, Substring, Find and Replace | The Geek Stuff String Mani […]
read コマンドの使い方 [Bash]
使い方 read [-ers] [-a aname] [-d delim] [-i text] [-n nchars] [-N nchars] [-p prompt] [-t timeout] [-u fd] [name […]
関数の使い方 [Bash]
使い方 シェルスクリプトで関数を定義する。 function greeting () { echo “Hello, $1” return 0 } 関数を呼び出す。 greeting “World” シェルスクリプトで関数 […]
記号/演算子 [Bash]
演算子 シェルスクリプトの if 文や while 文で使う演算子について – Qiita 初心者向け!シェルスクリプト演算子まとめました | エンジニアの入り口 算術演算子/比較演算子について! | Be […]
パイプの使い方 [Bash]
使い方 覚えてると案外便利なリダイレクト/パイプの使い方 9個 | 俺的備忘録 ストリーム/パイプ処理を視覚的に理解する – Qiita 複数のコマンドの結果をパイプで次のコマンドに渡したい | at sof […]