sed, dig, ps, echo, less, mysql, vim: add Japanese translation (#5916)

This commit is contained in:
あでり
2021-05-11 19:47:50 +09:00
committed by GitHub
parent dd8cfd038a
commit 956110581b
7 changed files with 232 additions and 0 deletions

36
pages.ja/common/less.md Normal file
View File

@@ -0,0 +1,36 @@
# less
> ファイルを開いて、スクロールや検索などのインタラクティブな読み方ができます。
> 詳しくはこちら: <https://greenwoodsoftware.com/less/>.
- ファイルを開く:
`less {{ソースファイル}}`
- ページダウン/アップ:
`<スペース> (ダウン), b (アップ)`
- ファイルの最後/最初に移動:
`G (最後), g (最初)`
- 文字列の前方検索(`n`/`N` を押すと、次の/前のマッチに移動する):
`/{{検索文字列}}`
- 文字列の後方検索(`n`/`N` を押すと次/前のマッチに進む):
`?{{検索文字列}}`
- 現在開いているファイルの出力を追跡する:
`F`
- 現在のファイルをエディターで開く:
`v`
- 閉じる:
`q`