tools: &tools !get_default "{tools-dir}" path: &path !join_path [*tools, seclists] install_commands: - !join ["bash -c 'if [[ -d /usr/share/seclists ]]; then ln -s /usr/share/seclists", *path, "; elif [[ -d", *path, "]] ; then cd", *path, "&& git fetch --all && git pull;", "else git clone https://github.com/danielmiessler/SecLists.git", *path, "; fi'"] uninstall_commands: - !join [sudo, rm, -r, *path]