From 19221317e62a3b96be4bc110aca86937d7e35d9c Mon Sep 17 00:00:00 2001 From: Tony Air Date: Thu, 1 Jul 2021 13:49:54 +0200 Subject: [PATCH] UPD: Readme --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/README.md b/README.md index da0cdd9..e7c48fb 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,23 @@ # silverstripe-elemental-basics Some useful elemental blocks + +## Usefull UNIX console utilities + +### Code search (find . -name "*.*" | xargs grep "some text" replacement) + +ag "some text" ./ +https://github.com/ggreer/the_silver_searcher + +### File content with code hightlighting (cat replacement) + +bat ./app/src/Pages/Page.php +https://github.com/sharkdp/bat + +### File listing (ls replacement) + +exa -aTL3 ./app +https://github.com/ogham/exa + +### git diff tool with bat code hightlighting (git show) + +https://github.com/dandavison/delta \ No newline at end of file