#include "shell.hpp" void shell::c_mkdir (std::string args) { // sanity checks if ( cwd_.exists (args) ) { carp ("Already exists: " + args); return; } // create the directory cwd_.open_dir (args, saga::filesystem::Create); return; }