ls -lh display filesize in easy to read format. i.e i.e M for MB, K for KB, G for GB
8.
ls -lt sort thefile names displayed in the order of last modification time.You will be finding it handy to use it in combination with -l option.
9.
wildcards wildcards are interpretedby the shell and the results are returned to the command you run. There are three main wildcards in Linux: An asterisk (*) – matches one or more occurrences of any character, including no character. Question mark (?) – represents or matches a single occurrence of any character. Bracketed characters ([ ]) – matches any occurrence of character enclosed in the square brackets. It is possible to use different types of characters (alphanumeric characters): numbers, letters, other special characters etc.
df -H Df: Thismanual page documents the GNU version of df. df displays the amount of disk space available on the file system containing each file name argument. Syntax: df [OPTION] [FILE]
man grep, inode grep:grep searches for PATTERNS in each FILE. PATTERNS is one or more patterns separated by newline characters, and grep prints each line that matches a pattern. Typically PATTERNS should be quoted when grep is used in a shell command Syntax: grep [OPTION...] PATTERNS [FILE...] grep [OPTION...] -e PATTERNS ... [FILE...] grep [OPTION...] -f PATTERN_FILE ... [FILE...] inode: Each file has an inode containing metadata about the file. An application can retrieve this metadata using stat(2) (or related calls), which returns a stat structure, or statx(2), which returns a statx structure.