#ifndef GOONSH_UTILS_H #define GOONSH_UTILS_H #include #include std::vector split(const std::string& line); std::string expand_envvars(const std::string& input); std::string expand_path(const std::string& path); std::vector get_files(const std::string& prefix); std::vector get_path_commands(); #endif // GOONSH_UTILS_H