#!/bin/bash
echo -e " ____                      _   ____       
|  _ \ __ _ _ __ _ __ ___ | |_/ ___|  ___  ___ 
| |_) / _\` | '__| '__/ _ \| __\___ \ / _ \/ __|
|  __/ (_| | |  | | | (_) | |_ ___) |  __/ (__ 
|_|   \__,_|_|  |_|  \___/ \__|____/ \___|\___|
                                               
"

if [ -d "$*" ]; then
  cd "$*" && ls -laH --color=auto
  $SHELL -s
else
  echo -e "Path \033[1;95m$1\033[1;0m doesn't exist.\nPlease report this bug to \033[1;96mteam@parrotsec.org\033[1;0m\n"
fi
