silverstripe-elemental-basics/README.md

23 lines
533 B
Markdown
Raw Normal View History

2021-06-08 10:11:32 +02:00
# silverstripe-elemental-basics
Some useful elemental blocks
2021-07-01 13:49:54 +02:00
## 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