These scripts are useful while developing on the REPL or for repetetive tasks within a larger script.
cat.py
------
This script is mostly intended to be used from the REPL to verify the contents of files.
### Usage
Just pass the file name, as a string, to the `cat` function.
### Example
```
>>> from cat import cat
>>> cat('filename.txt')
This is what is in the file.
>>>
```
extract.py
----------
This script houses the `tar_extract` function, which is intented to be used with the [utarfile.py](https://github.com/micropython/micropython-lib/tree/master/utarfile) and [shutil.py](https://github.com/micropython/micropython-lib/tree/master/shutil) modules to make archive extraction easier. The `tar_extract` function will create a directory (if necessary) and extract the files to that (or the current) directory.