mirror of
https://github.com/a2nt/silverstripe-elemental-basics.git
synced 2024-10-22 17:05:54 +02:00
UPD: Readme
This commit is contained in:
parent
d2d5c3dbaf
commit
19221317e6
21
README.md
21
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
|
Loading…
Reference in New Issue
Block a user