Main Page: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 14: | Line 14: | ||
=Powershell= | =Powershell= | ||
To search for text in a file use | |||
ls * -r | Select-String -simplematch -pattern "mysearchstring" | select -u -exp filename |
Revision as of 02:29, 23 February 2018
Linux Setup
You can find information on linux setup on the following page linux Setup
Programming
C#
Kotlin
You can find information on kotlin on the following page kotlin
Java
C++
Useful cli commands
You can find a list of these on the following page cli favourites
Windows Tips
Powershell
To search for text in a file use
ls * -r | Select-String -simplematch -pattern "mysearchstring" | select -u -exp filename