<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>shell Archives - The Golioth Developer Blog</title>
	<atom:link href="https://blog.golioth.io/tag/shell/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.golioth.io/tag/shell/</link>
	<description>Golioth, Zephyr, and IoT Development News and How Tos</description>
	<lastBuildDate>Wed, 16 Jul 2025 18:27:41 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://blog.golioth.io/wp-content/uploads/2023/09/cropped-Golioth_Symbol_Coral_RGB-1-32x32.png</url>
	<title>shell Archives - The Golioth Developer Blog</title>
	<link>https://blog.golioth.io/tag/shell/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>A Remote Shell for Embedded IoT Devices</title>
		<link>https://blog.golioth.io/a-remote-shell-for-embedded-iot-devices/</link>
		
		<dc:creator><![CDATA[Chris Gammell]]></dc:creator>
		<pubDate>Tue, 24 Jun 2025 15:29:01 +0000</pubDate>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[cellular]]></category>
		<category><![CDATA[remote shell]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[terminal]]></category>
		<guid isPermaLink="false">https://blog.golioth.io/?p=9702</guid>

					<description><![CDATA[<p>Golioth's Remote Shell uses Remote Procedure Calls (RPCs) and a custom Zephyr shell backend to enable an interactive, web-based shell experience from anywhere in the world.</p>
<p>The post <a href="https://blog.golioth.io/a-remote-shell-for-embedded-iot-devices/">A Remote Shell for Embedded IoT Devices</a> appeared first on <a href="https://blog.golioth.io">The Golioth Developer Blog</a>.</p>
]]></description>
		
		
		
			</item>
		<item>
		<title>Useful Zephyr Shells for IoT Development</title>
		<link>https://blog.golioth.io/useful-zephyr-shells-for-iot-development/</link>
		
		<dc:creator><![CDATA[Chris Gammell]]></dc:creator>
		<pubDate>Thu, 20 Feb 2025 15:50:36 +0000</pubDate>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Zephyr]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[zephyr]]></category>
		<guid isPermaLink="false">https://blog.golioth.io/?p=9102</guid>

					<description><![CDATA[<p>The Zephyr shell subsystem will help you directly interact with and troubleshoot your IoT hardware. This post details our most commonly used commands, as well as a listing of all Zephyr shell modules that we could extract from a recent project.</p>
<p>The post <a href="https://blog.golioth.io/useful-zephyr-shells-for-iot-development/">Useful Zephyr Shells for IoT Development</a> appeared first on <a href="https://blog.golioth.io">The Golioth Developer Blog</a>.</p>
]]></description>
		
		
		
			</item>
		<item>
		<title>Enabling power regulators automatically at boot in Zephyr</title>
		<link>https://blog.golioth.io/enabling-power-regulators-automatically-at-boot-in-zephyr/</link>
		
		<dc:creator><![CDATA[Chris Wilson]]></dc:creator>
		<pubDate>Tue, 30 Jan 2024 16:11:14 +0000</pubDate>
				<category><![CDATA[Zephyr]]></category>
		<category><![CDATA[devicetree]]></category>
		<category><![CDATA[Kconfig]]></category>
		<category><![CDATA[low-power]]></category>
		<category><![CDATA[power management]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[Zephyr shell]]></category>
		<guid isPermaLink="false">https://goliothblogdev.wpenginepowered.com/?p=6158</guid>

					<description><![CDATA[<p>Zephyr has a lot of tricks up its sleeve and most recently I used it to enable power regulators on a custom Golioth board. Perhaps the most interesting part of this is that it can be done entirely with the configuration code, without needing to dive in to any of the C files. And as [&#8230;]</p>
<p>The post <a href="https://blog.golioth.io/enabling-power-regulators-automatically-at-boot-in-zephyr/">Enabling power regulators automatically at boot in Zephyr</a> appeared first on <a href="https://blog.golioth.io">The Golioth Developer Blog</a>.</p>
]]></description>
		
		
		
			</item>
		<item>
		<title>How to add custom shell commands in Zephyr</title>
		<link>https://blog.golioth.io/how-to-add-custom-shell-commands-in-zephyr/</link>
		
		<dc:creator><![CDATA[Mike Szczys]]></dc:creator>
		<pubDate>Thu, 23 Jun 2022 14:17:55 +0000</pubDate>
				<category><![CDATA[Zephyr]]></category>
		<category><![CDATA[custom shell command]]></category>
		<category><![CDATA[shell]]></category>
		<guid isPermaLink="false">https://goliothblogdev.wpenginepowered.com/?p=2326</guid>

					<description><![CDATA[<p>The Zephyr shell is a powerful interactive tool, but it's not just for the stock features. You can easily add your own shell commands for setting and checking value, and creating custom readouts for in-depth analysis of what is going on with your IoT devices.</p>
<p>The post <a href="https://blog.golioth.io/how-to-add-custom-shell-commands-in-zephyr/">How to add custom shell commands in Zephyr</a> appeared first on <a href="https://blog.golioth.io">The Golioth Developer Blog</a>.</p>
]]></description>
		
		
		
			</item>
		<item>
		<title>How to use Zephyr shell for interactive prototyping with I2C sensors</title>
		<link>https://blog.golioth.io/how-to-use-zephyr-shell-for-interactive-prototyping-with-i2c-sensors/</link>
		
		<dc:creator><![CDATA[Mike Szczys]]></dc:creator>
		<pubDate>Thu, 26 May 2022 14:44:16 +0000</pubDate>
				<category><![CDATA[Zephyr]]></category>
		<category><![CDATA[i2c]]></category>
		<category><![CDATA[interactive]]></category>
		<category><![CDATA[shell]]></category>
		<guid isPermaLink="false">https://blog.golioth.network/?p=2173</guid>

					<description><![CDATA[<p>The Zephyr interactive shell makes it really easy to test out i2c devices before writing any code. This demo shows how to scan for i2c addresses, issue commands directly, and use the sensor shell to poll your devices for all sensor channels available as part of Zephyr's sensor subsystem.</p>
<p>The post <a href="https://blog.golioth.io/how-to-use-zephyr-shell-for-interactive-prototyping-with-i2c-sensors/">How to use Zephyr shell for interactive prototyping with I2C sensors</a> appeared first on <a href="https://blog.golioth.io">The Golioth Developer Blog</a>.</p>
]]></description>
		
		
		
			</item>
	</channel>
</rss>
