These are some useful Linux Terminal Commands for productivity:

Commands using ls etc.

useto
ls -ltrlist files in reverse modification history order with details.
`ls -ltrtail -n 5`
`lshead -n 5`
rename 's/original/new/' *To rename all filenames and directories containing “original” string to “new” string. To recursively do this in sub-directories, use **/*. See: here and here
for dir in */; do mkdir -- "$dir"/{tmp1,foo,bar,qux}; doneTo create directories within sub-directories in one go!
ls -alist all files, including hidden ones!

For opening image files from Terminal

Opening files directly through the Terminal is both easy and fast. Additionally, these commands are useful to view resulting files when using subprocess.run in Python to run Terminal commands.

useto
evince filenameopen PDF files and PS document files.
eog filenameopen image files in normal image formats like JPEG, JPG, PNG etc.
ds9 filenameopen FITS format image files. Requires DS9
fv filenameopen FITS format event lists and datasets. Requires initiation of NASA’s heasarc

To Check File Size in directories and sub-directories

du -h d 1 | sort -hu

Ref : https://www.linuxteck.com/9-basic-du-command-in-linux-with-examples/