- which
- Will locate the executable binary that is accessible by the shell as defined in the PATH.
- echo $PATH
- e.g.
/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/opt/X11/bin
- Echoes a colon-delimited list of paths that should contain executable binaries.
- e.g.
- ls -la
- chmod
- chown
- chgrp
Modernizing JavaScript.
- Classes
- static methods
- Modules
- Block Scoping
- let
- const
- String interpolation
- Object destruction
- Fat arrows
- Default parameter values & Spread operators
proces.env.PATH = `${process.env.PATH}:/usr/local/bin`;
let html = `<div>${content}</div>`; // Not using quotes, using backticks!