This commit is contained in:
sagie gur ari 2021-09-21 13:43:23 +00:00
parent 32a7b1e864
commit 99b19cecd9
2 changed files with 189 additions and 189 deletions

View file

@ -1,192 +1,192 @@
# Table of Contents
* [std::Echo (echo)](#`std__Echo`)
* [std::Eval (eval)](#`std__Eval`)
* [std::IsCommandDefined (is_command_defined)](#`std__IsCommandDefined`)
* [std::Noop (noop)](#`std__Noop`)
* [std::Not (not)](#`std__Not`)
* [std::ReadUserInput (read)](#`std__ReadUserInput`)
* [std::Release (release)](#`std__Release`)
* [std::ShowCommandDocumentation (man)](#`std__ShowCommandDocumentation`)
* [std::collections](#`std__collections`)
* [std::collections::Array (array)](#`std__collections__Array`)
* [std::collections::ArrayClear (array_clear)](#`std__collections__ArrayClear`)
* [std::collections::ArrayConcat (array_concat)](#`std__collections__ArrayConcat`)
* [std::collections::ArrayContains (array_contains)](#`std__collections__ArrayContains`)
* [std::collections::ArrayGet (array_get)](#`std__collections__ArrayGet`)
* [std::collections::ArrayIsEmpty (array_is_empty)](#`std__collections__ArrayIsEmpty`)
* [std::collections::ArrayJoin (array_join)](#`std__collections__ArrayJoin`)
* [std::collections::ArrayLength (array_length, arrlen, array_size)](#`std__collections__ArrayLength`)
* [std::collections::ArrayPop (array_pop)](#`std__collections__ArrayPop`)
* [std::collections::ArrayPush (array_push, array_add, array_put)](#`std__collections__ArrayPush`)
* [std::collections::ArrayRemove (array_remove)](#`std__collections__ArrayRemove`)
* [std::collections::ArraySet (array_set)](#`std__collections__ArraySet`)
* [std::collections::IsArray (is_array)](#`std__collections__IsArray`)
* [std::collections::IsMap (is_map)](#`std__collections__IsMap`)
* [std::collections::IsSet (is_set)](#`std__collections__IsSet`)
* [std::collections::Map (map)](#`std__collections__Map`)
* [std::collections::MapClear (map_clear)](#`std__collections__MapClear`)
* [std::collections::MapContainsKey (map_contains_key)](#`std__collections__MapContainsKey`)
* [std::collections::MapContainsValue (map_contains_value)](#`std__collections__MapContainsValue`)
* [std::collections::MapGet (map_get)](#`std__collections__MapGet`)
* [std::collections::MapIsEmpty (map_is_empty)](#`std__collections__MapIsEmpty`)
* [std::collections::MapKeys (map_keys)](#`std__collections__MapKeys`)
* [std::collections::MapLoadProperties (map_load_properties)](#`std__collections__MapLoadProperties`)
* [std::collections::MapPut (map_put, map_add)](#`std__collections__MapPut`)
* [std::collections::MapRemove (map_remove)](#`std__collections__MapRemove`)
* [std::collections::MapSize (map_size)](#`std__collections__MapSize`)
* [std::collections::MapToProperties (map_to_properties)](#`std__collections__MapToProperties`)
* [std::collections::Range (range)](#`std__collections__Range`)
* [std::collections::ReadProperties (read_properties)](#`std__collections__ReadProperties`)
* [std::collections::Set (set_new)](#`std__collections__Set`)
* [std::collections::SetClear (set_clear)](#`std__collections__SetClear`)
* [std::collections::SetContains (set_contains)](#`std__collections__SetContains`)
* [std::collections::SetFromArray (set_from_array)](#`std__collections__SetFromArray`)
* [std::collections::SetIsEmpty (set_is_empty)](#`std__collections__SetIsEmpty`)
* [std::collections::SetPut (set_put, set_add)](#`std__collections__SetPut`)
* [std::collections::SetRemove (set_remove)](#`std__collections__SetRemove`)
* [std::collections::SetSize (set_size)](#`std__collections__SetSize`)
* [std::collections::SetToArray (set_to_array)](#`std__collections__SetToArray`)
* [std::collections::WriteProperties (write_properties)](#`std__collections__WriteProperties`)
* [std::debug::DuckscriptSDKVersion (duckscript_sdk_version)](#`std__debug__DuckscriptSDKVersion`)
* [std::debug::DuckscriptVersion (duckscript_version)](#`std__debug__DuckscriptVersion`)
* [std::debug::DumpInstructions (dump_instructions)](#`std__debug__DumpInstructions`)
* [std::debug::DumpState (dump_state)](#`std__debug__DumpState`)
* [std::debug::DumpVariables (dump_variables)](#`std__debug__DumpVariables`)
* [std::env::EnvToMap (env_to_map)](#`std__env__EnvToMap`)
* [std::env::FindExecutable (which)](#`std__env__FindExecutable`)
* [std::env::GetCpuCount (cpu_count, get_cpu_count)](#`std__env__GetCpuCount`)
* [std::env::GetHomeDirectory (get_home_dir)](#`std__env__GetHomeDirectory`)
* [std::env::GetOSFamily (os_family)](#`std__env__GetOSFamily`)
* [std::env::GetOSName (os_name)](#`std__env__GetOSName`)
* [std::env::GetOSRelease (os_release)](#`std__env__GetOSRelease`)
* [std::env::GetOSVersion (os_version)](#`std__env__GetOSVersion`)
* [std::env::GetUserName (whoami, get_user_name)](#`std__env__GetUserName`)
* [std::env::GetVar (get_env)](#`std__env__GetVar`)
* [std::env::IsWindows (is_windows)](#`std__env__IsWindows`)
* [std::env::PrintCurrentDirectory (pwd, print_current_directory)](#`std__env__PrintCurrentDirectory`)
* [std::env::PrintEnv (print_env, printenv)](#`std__env__PrintEnv`)
* [std::env::SetCurrentDirectory (cd, set_current_dir, set_current_directory)](#`std__env__SetCurrentDirectory`)
* [std::env::SetVar (set_env)](#`std__env__SetVar`)
* [std::env::UName (uname)](#`std__env__UName`)
* [std::env::UnsetVar (unset_env)](#`std__env__UnsetVar`)
* [std::error::GetLastError (get_last_error)](#`std__error__GetLastError`)
* [std::error::GetLastErrorLine (get_last_error_line)](#`std__error__GetLastErrorLine`)
* [std::error::GetLastErrorSource (get_last_error_source)](#`std__error__GetLastErrorSource`)
* [std::error::SetError (set_error)](#`std__error__SetError`)
* [std::error::SetExitOnError (exit_on_error, set_exit_on_error)](#`std__error__SetExitOnError`)
* [std::error::TriggerError (trigger_error)](#`std__error__TriggerError`)
* [std::flowcontrol::ForIn (for)](#`std__flowcontrol__ForIn`)
* [std::flowcontrol::Function (function, fn)](#`std__flowcontrol__Function`)
* [std::flowcontrol::GoTo (goto)](#`std__flowcontrol__GoTo`)
* [std::flowcontrol::If (if)](#`std__flowcontrol__If`)
* [std::flowcontrol::While (while)](#`std__flowcontrol__While`)
* [std::fs::Append (appendfile)](#`std__fs__Append`)
* [std::fs::CPGlob (glob_cp, cp_glob)](#`std__fs__CPGlob`)
* [std::fs::CopyPath (cp)](#`std__fs__CopyPath`)
* [std::fs::CreateDirectory (mkdir)](#`std__fs__CreateDirectory`)
* [std::fs::CreateEmptyFile (touch)](#`std__fs__CreateEmptyFile`)
* [std::fs::DeleteEmptyDirectory (rmdir)](#`std__fs__DeleteEmptyDirectory`)
* [std::fs::DeletePath (rm)](#`std__fs__DeletePath`)
* [std::fs::Exists (is_path_exists)](#`std__fs__Exists`)
* [std::fs::GetCanonicalPath (canonicalize)](#`std__fs__GetCanonicalPath`)
* [std::fs::GetFileName (basename)](#`std__fs__GetFileName`)
* [std::fs::GetLastModifiedTime (get_last_modified_time)](#`std__fs__GetLastModifiedTime`)
* [std::fs::GetParentDirectory (dirname)](#`std__fs__GetParentDirectory`)
* [std::fs::GitIgnorePathArray (gitignore_path_array)](#`std__fs__GitIgnorePathArray`)
* [std::fs::GlobArray (glob_array, globarray)](#`std__fs__GlobArray`)
* [std::fs::IsDirectory (is_directory, is_dir)](#`std__fs__IsDirectory`)
* [std::fs::IsFile (is_file)](#`std__fs__IsFile`)
* [std::fs::IsPathNewer (is_path_newer)](#`std__fs__IsPathNewer`)
* [std::fs::IsReadonly (is_readonly)](#`std__fs__IsReadonly`)
* [std::fs::JoinPath (join_path)](#`std__fs__JoinPath`)
* [std::fs::List (ls)](#`std__fs__List`)
* [std::fs::MovePath (mv)](#`std__fs__MovePath`)
* [std::fs::Print (cat)](#`std__fs__Print`)
* [std::fs::ReadBytes (readbinfile, read_binary_file)](#`std__fs__ReadBytes`)
* [std::fs::ReadText (readfile, read_text_file)](#`std__fs__ReadText`)
* [std::fs::SetMode (chmod)](#`std__fs__SetMode`)
* [std::fs::SetModeGlob (glob_chmod, chmod_glob)](#`std__fs__SetModeGlob`)
* [std::fs::TempDirectory (temp_dir)](#`std__fs__TempDirectory`)
* [std::fs::TempFile (temp_file)](#`std__fs__TempFile`)
* [std::fs::WriteBytes (writebinfile, write_binary_file)](#`std__fs__WriteBytes`)
* [std::fs::WriteText (writefile, write_text_file)](#`std__fs__WriteText`)
* [std::hash::Digest (digest)](#`std__hash__Digest`)
* [std::hash::Sha256Sum (sha256sum, sha256sum)](#`std__hash__Sha256Sum`)
* [std::hash::Sha512Sum (sha512sum, sha512sum)](#`std__hash__Sha512Sum`)
* [std::json](#`std__json`)
* [std::json::Encode (json_encode)](#`std__json__Encode`)
* [std::json::Parse (json_parse)](#`std__json__Parse`)
* [std::lib::alias::Set (alias)](#`std__lib__alias__Set`)
* [std::lib::alias::Unset (unalias)](#`std__lib__alias__Unset`)
* [std::lib::command::Remove (remove_command)](#`std__lib__command__Remove`)
* [std::math::Calc (calc)](#`std__math__Calc`)
* [std::math::GreaterThan (greater_than)](#`std__math__GreaterThan`)
* [std::math::HexDecode (hex_decode)](#`std__math__HexDecode`)
* [std::math::HexEncode (hex_encode)](#`std__math__HexEncode`)
* [std::math::LessThan (less_than)](#`std__math__LessThan`)
* [std::net::Hostname (hostname)](#`std__net__Hostname`)
* [std::net::HttpClient (http_client)](#`std__net__HttpClient`)
* [std::net::WGet (wget)](#`std__net__WGet`)
* [std::net::ftp::Get (ftp_get)](#`std__net__ftp__Get`)
* [std::net::ftp::GetInMemory (ftp_get_in_memory)](#`std__net__ftp__GetInMemory`)
* [std::net::ftp::List (ftp_list)](#`std__net__ftp__List`)
* [std::net::ftp::NLst (ftp_nlst)](#`std__net__ftp__NLst`)
* [std::net::ftp::Put (ftp_put)](#`std__net__ftp__Put`)
* [std::net::ftp::PutInMemory (ftp_put_in_memory)](#`std__net__ftp__PutInMemory`)
* [std::process::Execute (exec)](#`std__process__Execute`)
* [std::process::Exit (exit, quit, q)](#`std__process__Exit`)
* [std::process::ProcessID (pid, process_id)](#`std__process__ProcessID`)
* [std::process::Spawn (spawn)](#`std__process__Spawn`)
* [std::process::Watchdog (watchdog)](#`std__process__Watchdog`)
* [std::random::Range (random_range, rand_range)](#`std__random__Range`)
* [std::random::Text (random_text, rand_text)](#`std__random__Text`)
* [std::scope::Clear (clear_scope)](#`std__scope__Clear`)
* [std::scope::PopStack (scope_pop_stack)](#`std__scope__PopStack`)
* [std::scope::PushStack (scope_push_stack)](#`std__scope__PushStack`)
* [std::semver::IsEqual (semver_is_equal)](#`std__semver__IsEqual`)
* [std::semver::IsNewer (semver_is_newer)](#`std__semver__IsNewer`)
* [std::semver::Parse (semver_parse)](#`std__semver__Parse`)
* [std::string::Base64 (base64)](#`std__string__Base64`)
* [std::string::Base64Decode (base64_decode)](#`std__string__Base64Decode`)
* [std::string::Base64Encode (base64_encode)](#`std__string__Base64Encode`)
* [std::string::BytesToString (bytes_to_string)](#`std__string__BytesToString`)
* [std::string::CamelCase (camelcase)](#`std__string__CamelCase`)
* [std::string::Concat (concat)](#`std__string__Concat`)
* [std::string::Contains (contains)](#`std__string__Contains`)
* [std::string::EndsWith (ends_with)](#`std__string__EndsWith`)
* [std::string::Equals (equals, eq)](#`std__string__Equals`)
* [std::string::IndexOf (indexof)](#`std__string__IndexOf`)
* [std::string::IsEmpty (is_empty)](#`std__string__IsEmpty`)
* [std::string::KebabCase (kebabcase)](#`std__string__KebabCase`)
* [std::string::LastIndexOf (last_indexof)](#`std__string__LastIndexOf`)
* [std::string::Length (length, strlen)](#`std__string__Length`)
* [std::string::Lowercase (lowercase)](#`std__string__Lowercase`)
* [std::string::Replace (replace)](#`std__string__Replace`)
* [std::string::SnakeCase (snakecase)](#`std__string__SnakeCase`)
* [std::string::Split (split)](#`std__string__Split`)
* [std::string::StartsWith (starts_with)](#`std__string__StartsWith`)
* [std::string::StringToBytes (string_to_bytes)](#`std__string__StringToBytes`)
* [std::string::SubString (substring)](#`std__string__SubString`)
* [std::string::Trim (trim)](#`std__string__Trim`)
* [std::string::TrimEnd (trim_end)](#`std__string__TrimEnd`)
* [std::string::TrimStart (trim_start)](#`std__string__TrimStart`)
* [std::string::Uppercase (uppercase)](#`std__string__Uppercase`)
* [std::test::Assert (assert)](#`std__test__Assert`)
* [std::test::AssertEquals (assert_eq)](#`std__test__AssertEquals`)
* [std::test::AssertError (assert_error)](#`std__test__AssertError`)
* [std::test::AssertFail (assert_fail)](#`std__test__AssertFail`)
* [std::test::AssertFalse (assert_false)](#`std__test__AssertFalse`)
* [std::test::TestDirectory (test_directory)](#`std__test__TestDirectory`)
* [std::test::TestFile (test_file)](#`std__test__TestFile`)
* [std::thread::Sleep (sleep)](#`std__thread__Sleep`)
* [std::time::CurrentTimeMillies (current_time)](#`std__time__CurrentTimeMillies`)
* [std::var::GetAllVarNames (get_all_var_names)](#`std__var__GetAllVarNames`)
* [std::var::GetByName (get_by_name)](#`std__var__GetByName`)
* [std::var::IsDefined (is_defined)](#`std__var__IsDefined`)
* [std::var::Set (set)](#`std__var__Set`)
* [std::var::SetByName (set_by_name)](#`std__var__SetByName`)
* [std::var::Unset (unset)](#`std__var__Unset`)
* [std::var::UnsetAllVars (unset_all_vars)](#`std__var__UnsetAllVars`)
* [`std::Echo` (echo)](#std__Echo)
* [`std::Eval` (eval)](#std__Eval)
* [`std::IsCommandDefined` (is_command_defined)](#std__IsCommandDefined)
* [`std::Noop` (noop)](#std__Noop)
* [`std::Not` (not)](#std__Not)
* [`std::ReadUserInput` (read)](#std__ReadUserInput)
* [`std::Release` (release)](#std__Release)
* [`std::ShowCommandDocumentation` (man)](#std__ShowCommandDocumentation)
* [`std::collections`](#std__collections)
* [`std::collections::Array` (array)](#std__collections__Array)
* [`std::collections::ArrayClear` (array_clear)](#std__collections__ArrayClear)
* [`std::collections::ArrayConcat` (array_concat)](#std__collections__ArrayConcat)
* [`std::collections::ArrayContains` (array_contains)](#std__collections__ArrayContains)
* [`std::collections::ArrayGet` (array_get)](#std__collections__ArrayGet)
* [`std::collections::ArrayIsEmpty` (array_is_empty)](#std__collections__ArrayIsEmpty)
* [`std::collections::ArrayJoin` (array_join)](#std__collections__ArrayJoin)
* [`std::collections::ArrayLength` (array_length, arrlen, array_size)](#std__collections__ArrayLength)
* [`std::collections::ArrayPop` (array_pop)](#std__collections__ArrayPop)
* [`std::collections::ArrayPush` (array_push, array_add, array_put)](#std__collections__ArrayPush)
* [`std::collections::ArrayRemove` (array_remove)](#std__collections__ArrayRemove)
* [`std::collections::ArraySet` (array_set)](#std__collections__ArraySet)
* [`std::collections::IsArray` (is_array)](#std__collections__IsArray)
* [`std::collections::IsMap` (is_map)](#std__collections__IsMap)
* [`std::collections::IsSet` (is_set)](#std__collections__IsSet)
* [`std::collections::Map` (map)](#std__collections__Map)
* [`std::collections::MapClear` (map_clear)](#std__collections__MapClear)
* [`std::collections::MapContainsKey` (map_contains_key)](#std__collections__MapContainsKey)
* [`std::collections::MapContainsValue` (map_contains_value)](#std__collections__MapContainsValue)
* [`std::collections::MapGet` (map_get)](#std__collections__MapGet)
* [`std::collections::MapIsEmpty` (map_is_empty)](#std__collections__MapIsEmpty)
* [`std::collections::MapKeys` (map_keys)](#std__collections__MapKeys)
* [`std::collections::MapLoadProperties` (map_load_properties)](#std__collections__MapLoadProperties)
* [`std::collections::MapPut` (map_put, map_add)](#std__collections__MapPut)
* [`std::collections::MapRemove` (map_remove)](#std__collections__MapRemove)
* [`std::collections::MapSize` (map_size)](#std__collections__MapSize)
* [`std::collections::MapToProperties` (map_to_properties)](#std__collections__MapToProperties)
* [`std::collections::Range` (range)](#std__collections__Range)
* [`std::collections::ReadProperties` (read_properties)](#std__collections__ReadProperties)
* [`std::collections::Set` (set_new)](#std__collections__Set)
* [`std::collections::SetClear` (set_clear)](#std__collections__SetClear)
* [`std::collections::SetContains` (set_contains)](#std__collections__SetContains)
* [`std::collections::SetFromArray` (set_from_array)](#std__collections__SetFromArray)
* [`std::collections::SetIsEmpty` (set_is_empty)](#std__collections__SetIsEmpty)
* [`std::collections::SetPut` (set_put, set_add)](#std__collections__SetPut)
* [`std::collections::SetRemove` (set_remove)](#std__collections__SetRemove)
* [`std::collections::SetSize` (set_size)](#std__collections__SetSize)
* [`std::collections::SetToArray` (set_to_array)](#std__collections__SetToArray)
* [`std::collections::WriteProperties` (write_properties)](#std__collections__WriteProperties)
* [`std::debug::DuckscriptSDKVersion` (duckscript_sdk_version)](#std__debug__DuckscriptSDKVersion)
* [`std::debug::DuckscriptVersion` (duckscript_version)](#std__debug__DuckscriptVersion)
* [`std::debug::DumpInstructions` (dump_instructions)](#std__debug__DumpInstructions)
* [`std::debug::DumpState` (dump_state)](#std__debug__DumpState)
* [`std::debug::DumpVariables` (dump_variables)](#std__debug__DumpVariables)
* [`std::env::EnvToMap` (env_to_map)](#std__env__EnvToMap)
* [`std::env::FindExecutable` (which)](#std__env__FindExecutable)
* [`std::env::GetCpuCount` (cpu_count, get_cpu_count)](#std__env__GetCpuCount)
* [`std::env::GetHomeDirectory` (get_home_dir)](#std__env__GetHomeDirectory)
* [`std::env::GetOSFamily` (os_family)](#std__env__GetOSFamily)
* [`std::env::GetOSName` (os_name)](#std__env__GetOSName)
* [`std::env::GetOSRelease` (os_release)](#std__env__GetOSRelease)
* [`std::env::GetOSVersion` (os_version)](#std__env__GetOSVersion)
* [`std::env::GetUserName` (whoami, get_user_name)](#std__env__GetUserName)
* [`std::env::GetVar` (get_env)](#std__env__GetVar)
* [`std::env::IsWindows` (is_windows)](#std__env__IsWindows)
* [`std::env::PrintCurrentDirectory` (pwd, print_current_directory)](#std__env__PrintCurrentDirectory)
* [`std::env::PrintEnv` (print_env, printenv)](#std__env__PrintEnv)
* [`std::env::SetCurrentDirectory` (cd, set_current_dir, set_current_directory)](#std__env__SetCurrentDirectory)
* [`std::env::SetVar` (set_env)](#std__env__SetVar)
* [`std::env::UName` (uname)](#std__env__UName)
* [`std::env::UnsetVar` (unset_env)](#std__env__UnsetVar)
* [`std::error::GetLastError` (get_last_error)](#std__error__GetLastError)
* [`std::error::GetLastErrorLine` (get_last_error_line)](#std__error__GetLastErrorLine)
* [`std::error::GetLastErrorSource` (get_last_error_source)](#std__error__GetLastErrorSource)
* [`std::error::SetError` (set_error)](#std__error__SetError)
* [`std::error::SetExitOnError` (exit_on_error, set_exit_on_error)](#std__error__SetExitOnError)
* [`std::error::TriggerError` (trigger_error)](#std__error__TriggerError)
* [`std::flowcontrol::ForIn` (for)](#std__flowcontrol__ForIn)
* [`std::flowcontrol::Function` (function, fn)](#std__flowcontrol__Function)
* [`std::flowcontrol::GoTo` (goto)](#std__flowcontrol__GoTo)
* [`std::flowcontrol::If` (if)](#std__flowcontrol__If)
* [`std::flowcontrol::While` (while)](#std__flowcontrol__While)
* [`std::fs::Append` (appendfile)](#std__fs__Append)
* [`std::fs::CPGlob` (glob_cp, cp_glob)](#std__fs__CPGlob)
* [`std::fs::CopyPath` (cp)](#std__fs__CopyPath)
* [`std::fs::CreateDirectory` (mkdir)](#std__fs__CreateDirectory)
* [`std::fs::CreateEmptyFile` (touch)](#std__fs__CreateEmptyFile)
* [`std::fs::DeleteEmptyDirectory` (rmdir)](#std__fs__DeleteEmptyDirectory)
* [`std::fs::DeletePath` (rm)](#std__fs__DeletePath)
* [`std::fs::Exists` (is_path_exists)](#std__fs__Exists)
* [`std::fs::GetCanonicalPath` (canonicalize)](#std__fs__GetCanonicalPath)
* [`std::fs::GetFileName` (basename)](#std__fs__GetFileName)
* [`std::fs::GetLastModifiedTime` (get_last_modified_time)](#std__fs__GetLastModifiedTime)
* [`std::fs::GetParentDirectory` (dirname)](#std__fs__GetParentDirectory)
* [`std::fs::GitIgnorePathArray` (gitignore_path_array)](#std__fs__GitIgnorePathArray)
* [`std::fs::GlobArray` (glob_array, globarray)](#std__fs__GlobArray)
* [`std::fs::IsDirectory` (is_directory, is_dir)](#std__fs__IsDirectory)
* [`std::fs::IsFile` (is_file)](#std__fs__IsFile)
* [`std::fs::IsPathNewer` (is_path_newer)](#std__fs__IsPathNewer)
* [`std::fs::IsReadonly` (is_readonly)](#std__fs__IsReadonly)
* [`std::fs::JoinPath` (join_path)](#std__fs__JoinPath)
* [`std::fs::List` (ls)](#std__fs__List)
* [`std::fs::MovePath` (mv)](#std__fs__MovePath)
* [`std::fs::Print` (cat)](#std__fs__Print)
* [`std::fs::ReadBytes` (readbinfile, read_binary_file)](#std__fs__ReadBytes)
* [`std::fs::ReadText` (readfile, read_text_file)](#std__fs__ReadText)
* [`std::fs::SetMode` (chmod)](#std__fs__SetMode)
* [`std::fs::SetModeGlob` (glob_chmod, chmod_glob)](#std__fs__SetModeGlob)
* [`std::fs::TempDirectory` (temp_dir)](#std__fs__TempDirectory)
* [`std::fs::TempFile` (temp_file)](#std__fs__TempFile)
* [`std::fs::WriteBytes` (writebinfile, write_binary_file)](#std__fs__WriteBytes)
* [`std::fs::WriteText` (writefile, write_text_file)](#std__fs__WriteText)
* [`std::hash::Digest` (digest)](#std__hash__Digest)
* [`std::hash::Sha256Sum` (sha256sum, sha256sum)](#std__hash__Sha256Sum)
* [`std::hash::Sha512Sum` (sha512sum, sha512sum)](#std__hash__Sha512Sum)
* [`std::json`](#std__json)
* [`std::json::Encode` (json_encode)](#std__json__Encode)
* [`std::json::Parse` (json_parse)](#std__json__Parse)
* [`std::lib::alias::Set` (alias)](#std__lib__alias__Set)
* [`std::lib::alias::Unset` (unalias)](#std__lib__alias__Unset)
* [`std::lib::command::Remove` (remove_command)](#std__lib__command__Remove)
* [`std::math::Calc` (calc)](#std__math__Calc)
* [`std::math::GreaterThan` (greater_than)](#std__math__GreaterThan)
* [`std::math::HexDecode` (hex_decode)](#std__math__HexDecode)
* [`std::math::HexEncode` (hex_encode)](#std__math__HexEncode)
* [`std::math::LessThan` (less_than)](#std__math__LessThan)
* [`std::net::Hostname` (hostname)](#std__net__Hostname)
* [`std::net::HttpClient` (http_client)](#std__net__HttpClient)
* [`std::net::WGet` (wget)](#std__net__WGet)
* [`std::net::ftp::Get` (ftp_get)](#std__net__ftp__Get)
* [`std::net::ftp::GetInMemory` (ftp_get_in_memory)](#std__net__ftp__GetInMemory)
* [`std::net::ftp::List` (ftp_list)](#std__net__ftp__List)
* [`std::net::ftp::NLst` (ftp_nlst)](#std__net__ftp__NLst)
* [`std::net::ftp::Put` (ftp_put)](#std__net__ftp__Put)
* [`std::net::ftp::PutInMemory` (ftp_put_in_memory)](#std__net__ftp__PutInMemory)
* [`std::process::Execute` (exec)](#std__process__Execute)
* [`std::process::Exit` (exit, quit, q)](#std__process__Exit)
* [`std::process::ProcessID` (pid, process_id)](#std__process__ProcessID)
* [`std::process::Spawn` (spawn)](#std__process__Spawn)
* [`std::process::Watchdog` (watchdog)](#std__process__Watchdog)
* [`std::random::Range` (random_range, rand_range)](#std__random__Range)
* [`std::random::Text` (random_text, rand_text)](#std__random__Text)
* [`std::scope::Clear` (clear_scope)](#std__scope__Clear)
* [`std::scope::PopStack` (scope_pop_stack)](#std__scope__PopStack)
* [`std::scope::PushStack` (scope_push_stack)](#std__scope__PushStack)
* [`std::semver::IsEqual` (semver_is_equal)](#std__semver__IsEqual)
* [`std::semver::IsNewer` (semver_is_newer)](#std__semver__IsNewer)
* [`std::semver::Parse` (semver_parse)](#std__semver__Parse)
* [`std::string::Base64` (base64)](#std__string__Base64)
* [`std::string::Base64Decode` (base64_decode)](#std__string__Base64Decode)
* [`std::string::Base64Encode` (base64_encode)](#std__string__Base64Encode)
* [`std::string::BytesToString` (bytes_to_string)](#std__string__BytesToString)
* [`std::string::CamelCase` (camelcase)](#std__string__CamelCase)
* [`std::string::Concat` (concat)](#std__string__Concat)
* [`std::string::Contains` (contains)](#std__string__Contains)
* [`std::string::EndsWith` (ends_with)](#std__string__EndsWith)
* [`std::string::Equals` (equals, eq)](#std__string__Equals)
* [`std::string::IndexOf` (indexof)](#std__string__IndexOf)
* [`std::string::IsEmpty` (is_empty)](#std__string__IsEmpty)
* [`std::string::KebabCase` (kebabcase)](#std__string__KebabCase)
* [`std::string::LastIndexOf` (last_indexof)](#std__string__LastIndexOf)
* [`std::string::Length` (length, strlen)](#std__string__Length)
* [`std::string::Lowercase` (lowercase)](#std__string__Lowercase)
* [`std::string::Replace` (replace)](#std__string__Replace)
* [`std::string::SnakeCase` (snakecase)](#std__string__SnakeCase)
* [`std::string::Split` (split)](#std__string__Split)
* [`std::string::StartsWith` (starts_with)](#std__string__StartsWith)
* [`std::string::StringToBytes` (string_to_bytes)](#std__string__StringToBytes)
* [`std::string::SubString` (substring)](#std__string__SubString)
* [`std::string::Trim` (trim)](#std__string__Trim)
* [`std::string::TrimEnd` (trim_end)](#std__string__TrimEnd)
* [`std::string::TrimStart` (trim_start)](#std__string__TrimStart)
* [`std::string::Uppercase` (uppercase)](#std__string__Uppercase)
* [`std::test::Assert` (assert)](#std__test__Assert)
* [`std::test::AssertEquals` (assert_eq)](#std__test__AssertEquals)
* [`std::test::AssertError` (assert_error)](#std__test__AssertError)
* [`std::test::AssertFail` (assert_fail)](#std__test__AssertFail)
* [`std::test::AssertFalse` (assert_false)](#std__test__AssertFalse)
* [`std::test::TestDirectory` (test_directory)](#std__test__TestDirectory)
* [`std::test::TestFile` (test_file)](#std__test__TestFile)
* [`std::thread::Sleep` (sleep)](#std__thread__Sleep)
* [`std::time::CurrentTimeMillies` (current_time)](#std__time__CurrentTimeMillies)
* [`std::var::GetAllVarNames` (get_all_var_names)](#std__var__GetAllVarNames)
* [`std::var::GetByName` (get_by_name)](#std__var__GetByName)
* [`std::var::IsDefined` (is_defined)](#std__var__IsDefined)
* [`std::var::Set` (set)](#std__var__Set)
* [`std::var::SetByName` (set_by_name)](#std__var__SetByName)
* [`std::var::Unset` (unset)](#std__var__Unset)
* [`std::var::UnsetAllVars` (unset_all_vars)](#std__var__UnsetAllVars)
<a name="std__Echo"></a>

View file

@ -73,7 +73,7 @@ impl Command for CommandImpl {
};
buffer.push_str(&format!(
"* [{}{}](#`{}`)\n",
"* [`{}`{}](#{})\n",
name,
aliases_line,
name.replace(":", "_"),