bash
This page holds bash cheat sheets
Finding file with particular extensions to open in vs code
find . -iname "*\.{file-extension}" -print0 | xargs -0 code
Printing the last exit code
Sometimes you need to read the exit code of the last ran command, to check it if succeeded or failed. To do so exicute the following command.
echo $?