📝

Linuxコマンドのまとめ

2024/01/08に公開

都度都度追加していく予定

echo

  1. ターミナルに文字列を出力する。
$ echo "hello"
hello
  1. ファイルに追記する。
$ echo "hello" >> test.txt
$ cat test.txt
hello

curl

  1. 様々なプロトコルで通信を行える。
$ curl https://www.google.co.jp/
Googleのhtmlがターミナルに出力される
  1. -o オプションでファイルに出力する。
$ curl https://www.google.co.jp/ -o example
Googleのhtmlがexampleファイルに出力される。
exampleファイルがない場合は作成される。

Discussion