Gives descriptions of command line inputs on linux
It gives a description of what the entered command does.
Example Terminal Input: ./main.py grep -ril 'error' /var/log/ Output: Searches for all lines containing the pattern 'error' in the file '/var/log/' with the following options: r: searches directories recursively i: ignores case distinctions in the pattern l: prints only the names of files with matching lines
- ls
- grep
- cat
./main.py {script you want to input}
python3 -m unittest discover -s tests -p "*.py"