使い方 カレントディレクトリ以下でファイル名にキーワードが含まれるファイル及びディレクトリを探す。 $ find . -name *hoge* 注意事項 ワイルドカード * はピリオド . に一致しない。 find コマ […]
カテゴリー:Linux
for 文の使い方 [Bash]
使い方 シェルスクリプトで引数を一つずつ処理する。 配列の要素を一つずつ処理する。 配列のインデックスを使って処理する。 for 文のまとめ | 小粋空間 for 文 – 繰り返し | server-memo […]
ファイアウォールを設定する方法 (firewalld) [CentOS]
firewalld firewalld [Official] firewalld/firewalld: Firewall daemon with D-Bus interface – GitHub ドキュメント […]
direnv の使い方 [Linux]
direnv direnv – unclutter your .profile [Official] direnv/direnv: Unclutter your .profile – GitHub […]
リダイレクトの使い方 [Bash]
リダイレクト Redirections | Bash Reference Manual 使い方 標準出力をファイルに出力する。 $ echo “hello” > hello.txt 標準エラー出力を標準出力に合流す […]
メールサーバーを導入する方法
メールサーバーを導入する方法 Postfix + Dovecot によるメールサーバ構築 | DevelopersIO ローカルネットワーク内のみで使えるメールサーバをたてよう | ふ~ん メールサーバー構築 (Post […]
zip コマンド [Linux]
zip コマンド ファイルを圧縮する。(file を圧縮して archive.zip を作成する。) $ zip archive file 複数のファイルを圧縮する。 $ zip archive file1 file2 […]
peco の使い方 [Linux]
peco peco/peco: Simplistic interactive filtering tool – GitHub 使い方 peco の基礎の基礎 – Qiita え、まだ peco を […]
yum コマンドの使い方 [CentOS]
yum コマンド yum コマンド – Qiita yum コマンドでよく利用するコマンド | @IT yum help コマンド ヘルプを表示する。 $ yum help 指定したサブコマンドのヘルプを表示 […]
文字列の操作 [Bash]
使い方 Bash String Manipulation Examples – Length, Substring, Find and Replace | The Geek Stuff String Mani […]