Table of Contents |
---|
...
Search for all of the file names that do not contain the text "done" (recursive, case insensitive)
grep -ri "p 2425" *
Useful for searching Radmind command files for transcripts (p) from a specific year (2425) (recursive, case insensitive)
vi
https://www.cs.colostate.edu/helpdocs/vi.html
...
from a terminal window
xattr -c nameofthe.dmg
Finding a developer's code sign number
codesign -dv /path/to/kext
Windows
Using Environment Variables
...
Initialize-Disk -Number 0 -PartitionStyle GPT
Getting System Info
Detecting Windows Version
CMD:
ver | find "6.3" >nul && goto WIN8
...
Get-WindowsEdition -Verbose -Online
Detecting Hardware Model
if /i "%WMICModel:~0,7%"=="20074DU" set TP=y
...