From 14a74aea0f02da53e0f61c572da2c5244ed80551 Mon Sep 17 00:00:00 2001 From: Rory Dudley Date: Thu, 28 Mar 2024 21:05:00 -0600 Subject: The anthology module The anthology module was added to run built-in commands. The 'cd' and 'exit' built-ins were moved from the main recite() loop to this module. Additionally, the 'export' and 'source' built-ins were added. --- src/poem/anthology/export.rs | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/poem/anthology/export.rs (limited to 'src/poem/anthology/export.rs') diff --git a/src/poem/anthology/export.rs b/src/poem/anthology/export.rs new file mode 100644 index 0000000..76dfd99 --- /dev/null +++ b/src/poem/anthology/export.rs @@ -0,0 +1,23 @@ +use crate::poem::Verse; +use std::env; + +pub fn incant(verse: &Verse) -> i32 { + match verse.clause() { + Some(clause) => { + for stanza in clause { + let (key, val) = match stanza.split_once("=") { + Some((key, val)) => (key, val), + None => continue, + }; + env::set_var(key, val); + } + } + None => { + for (key, val) in env::vars() { + println!("{}={}", key, val); + } + } + } + + 0 +} -- cgit v1.2.3