📝
Linuxコマンドのまとめ
都度都度追加していく予定
echo
- ターミナルに文字列を出力する。
$ echo "hello"
hello
- ファイルに追記する。
$ echo "hello" >> test.txt
$ cat test.txt
hello
curl
- 様々なプロトコルで通信を行える。
$ curl https://www.google.co.jp/
Googleのhtmlがターミナルに出力される
- -o オプションでファイルに出力する。
$ curl https://www.google.co.jp/ -o example
Googleのhtmlがexampleファイルに出力される。
exampleファイルがない場合は作成される。
Discussion