411 B
411 B
Shell & OS Rules
- Always use bash/sh syntax for terminal commands, never PowerShell
- Use
cpinstead ofCopy-Item - Use
mvinstead ofMove-Item - Use
rminstead ofRemove-Item - Use
mkdir -pinstead ofNew-Item -ItemType Directory - Use
catinstead ofGet-Content - Use forward slashes
/in paths, never backslashes\ - Do not use
$env:for environment variables, use$VARsyntax