### 2. Parse column Given a username that exists locally on a linux machine, print home directory of the user. In case the user is not found. It should return an error hint: list of users and their home directory can be found in /etc/passwd #### Example 1 ``` ./myscript.sh root ``` Output: ``` Home directory: /var/root ``` #### Example 2 ``` ./myscript.sh usernonexists ``` Output: ``` User "usernonexists" not found ```