{"id":1330,"date":"2024-05-30T15:56:42","date_gmt":"2024-05-30T21:56:42","guid":{"rendered":"https:\/\/grownuptech.com\/?p=1322"},"modified":"2024-08-12T18:40:30","modified_gmt":"2024-08-12T18:40:30","slug":"exploring-the-gui-and-the-cli","status":"publish","type":"post","link":"https:\/\/oakwoodexperience.com\/staging\/2633\/exploring-the-gui-and-the-cli\/","title":{"rendered":"Exploring the GUI and the CLI"},"content":{"rendered":"<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full is-resized\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/grownuptech.com\/wp-content\/uploads\/2024\/05\/GUI-CLI.jpeg?w=1290&#038;ssl=1\" alt=\"AI generated, photorealistic image of a computer screen showing a Graphical User Interface and a Command Line Interface\" class=\"wp-image-1323\" style=\"width:324px;height:auto\"\/><\/figure>\n<\/div>\n\n\n<p class=\"has-black-color has-text-color has-link-color wp-elements-473159bd7b185b79afbbf57fa4fd442c\">We\u2019re continuing our Computer Basics series, and this week we\u2019re exploring the Graphical User Interface and the Command Line Interface.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-black-color has-text-color has-link-color wp-elements-983df6fc975f4427fa3b19fe626edc2e\">The Graphical User Interface (GUI)<\/h2>\n\n\n\n<p class=\"has-black-color has-text-color has-link-color wp-elements-af84df1374fd0b83ba363d1ab6d18e6a\">A GUI (pronounced \u201cgooey) is a visual way for users to interact with computers, using graphics, icons, windows, and menus. Users perform their tasks by clicking, dragging, and dropping (releasing the mouse button) elements on the screen. The GUI is an intuitive and user-friendly method of operation, which makes it easier for users, especially new users, to navigate and use computers. Because you can see the options available to you on the screen, the GUI reduces (but not quite eliminates) the need to memorize complex commands and text-based interactions, which I\u2019ll cover in just a few minutes.<\/p>\n\n\n\n<p class=\"has-black-color has-text-color has-link-color wp-elements-ee52f08cfb8093ada8a434d4aa0bae92\">The GUI consists of icons on the desktop, taskbars along the bottom, the start menu, buttons to click, checkboxes, and dialog boxes that pop up and ask you to make a selection. Users can use these components to do things like opening programs, managing their files, and change the settings in a program or in the system itself. You use a GUI if you use the Windows Desktop, the macOS desktop, or the graphical environments in a Linux distribution like Unity or GNOME.<\/p>\n\n\n\n<p class=\"has-black-color has-text-color has-link-color wp-elements-cbd04f36baadc5405d6314cc92047924\">There are some advantages of using a GUI instead of a text-based interaction method. A GUI offers a visual representation of data and actions. It\u2019s one thing to <em>know<\/em> something, it\u2019s another thing to actually <em>see<\/em> it. The GUI simplifies complex tasks and workflows by breaking them down into manageable graphical elements. The GUI is a front end for commands. When you click on something or drag and drop something, the GUI kicks off the command to perform that action, which happens \u201cbehind the scenes\u201d and provides you a visual representation of what\u2019s going on back there. GUIs can also provide visual cues, tooltips, and confirmation dialogs that help prevent user errors and minimize accidental actions. They also offer feedback mechanisms, like progress bars and status indicators, that inform users about ongoing processes, which can reduce confusion and frustration.<\/p>\n\n\n\n<p class=\"has-black-color has-text-color has-link-color wp-elements-d1a437911502caa2303447130964443a\">Two underused and less-understood components of a GUI are the Windows Taskbar and the Windows Start Menu. The Taskbar is a GUI component that displays running applications, system notifications, and quick access to commonly used tools. Users can pin favorite programs to the taskbar, as well as often-used files. The Start Menu provides access to applications, settings, files, and search functionality.\u00a0 There are a lot of ways a GUI can be customized to suit your individual preferences, like display settings, organizing your desktop layouts, and choosing a them. Icons, wallpapers, and color schemes can all be personalized.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Command Line Interface (CLI)<\/h2>\n\n\n\n<p class=\"has-black-color has-text-color has-link-color wp-elements-a105c74519951cb2fa71d311e5ba5a53\">The Command Line Interface (CLI) lets users interact with the computer by typing commands. Commands are textual instructions that perform specific actions or operations on the computer. The CLI works through a command prompt or terminal window where users type text commands to perform tasks. CLI provides direct control over system functions, file management and software operations through the command the user types. The user can run commands to do things like copy, move, create, and delete files and folders, install and remove software, and make changes to system settings. The CLI is commonly used for writing scripts for automating tasks, where a sequence of commands can be saved as a file to use for repeated execution. Scripts can automate complex process, batch operations, and system maintenance tasks. While a GUI provides a convenient way to execute commands, there are almost always more commands available to use than are found in the GUI.<\/p>\n\n\n\n<p class=\"has-black-color has-text-color has-link-color wp-elements-7b2b7eb3ca9e2bc4c8a8e1e88d3e5dc9\">The CLI consumes fewer system resources than the GUI uses, and that makes it a real benefit when you\u2019re dealing with resource-limited environments like servers or embedded systems (I\u2019ll probably do a post later on embedded systems). System Administrators (like me) like to use CLI, as do many developers and power users. The CLI is really efficient and flexible, and very often there are options available when using CLI that aren\u2019t available in a GUI. Essentially, when you\u2019re clicking a button on a GUI, you\u2019re telling the system to run a command of some kind, which would have the same effect if you opened the command prompt and typed the command itself.<\/p>\n\n\n\n<p class=\"has-black-color has-text-color has-link-color wp-elements-12c841b915338c7a1f9d64c836e87224\">Using a CLI, though, requires that you learn specific commands, the syntax (think \u201cgrammar\u201d \u2013 putting things into the right place in the command or using the right descriptors, flags, or tags), and conventions (does the capital\/lower case state matter, knowing when to use \u201ctwo\u201d and when to use \u201c2\u201d, etc). Having to learn those things can be present a steep learning curve, which is magnified if you lack confidence. If you take the time to learn it, it can help you gain greater control, efficiency, and more customization options than you\u2019ll have with the GUI.<\/p>\n\n\n\n<p class=\"has-black-color has-text-color has-link-color wp-elements-da1ce787fedd0bebfc7eb721c7166322\">The black-box command prompt isn\u2019t the only form of CLI. Windows PowerShell is also a CLI, the Shell in Linux, and the Terminal in macOS and Linux are all versions of a CLI. CLI is a powerful tool for users who require more precise control, automation capabilities, and efficient and effective resource management in their computing environments.<\/p>\n\n\n\n<p class=\"has-black-color has-text-color has-link-color wp-elements-0a2954c51458b12a20b0e4d565cfc78e\">Here are a few examples of some well-known commands:<\/p>\n\n\n\n<ul class=\"has-black-color has-text-color has-link-color wp-block-list wp-elements-bbcd198926461800f1cb7a3cee5479fd\">\n<li>cd: Change directory<\/li>\n\n\n\n<li>ls (Linux and macOS) or dir (Windows): List files and directories<\/li>\n\n\n\n<li>mkdir: Make Directory, or create a new directory<\/li>\n\n\n\n<li>rm (Linux and macOS) or del (Windows): remove or delete a file<\/li>\n\n\n\n<li>cp (Linux and macOS) or copy (Windows): copy files or directories<\/li>\n\n\n\n<li>mv (Linux and macOS) or move (Windows): Move or rename files or directories<\/li>\n\n\n\n<li>grep (Linux and macOS): search for text or patterns<\/li>\n\n\n\n<li>chmod (Linux and macOS): change file permissions<\/li>\n\n\n\n<li>sudo (Linux and macOS): run a command with administrative privileges<\/li>\n<\/ul>\n\n\n\n<p class=\"has-black-color has-text-color has-link-color wp-elements-a723ba941481b2d5cbd71e151828f5d6\">Executing a command typically shows the results on the screen, which is fine for simple commands that don\u2019t generate a lot of text. However, there are times when we want to perform a command, and then have the results do something else or become available for another command to use. In those cases, we can use the | symbol or the \u201cPipe\u201d which is the \u201cupper case\u201d version of the backslash (\\), or we can use the > or >> to send the results to a printer or a file. For example, if a command is going to produce so much output that it\u2019s going to scroll up the screen and I won\u2019t be able to see it all, I can send the results to a simple text file that I can open and read much more easily. Pipelines, which is what we call using a command with a pipe, help us automate tasks, or process batches of commands.<\/p>\n\n\n\n<p class=\"has-black-color has-text-color has-link-color wp-elements-f0544f178c3a3063b36a23ead055820a\">CLI is essential for development and programming. Developers write and compile code, manage version control systems, debug their code, and eventually deploy the software package. The CLI makes for efficient workflows for coding and testing.<\/p>\n\n\n\n<p class=\"has-black-color has-text-color has-link-color wp-elements-0ed91e80f7f879417423ad88176d5fa9\">We use CLI extensively in administering servers. Copying large groups of files and folders is facilitated using the <em>robocopy<\/em> command, providing a way to bypass some of the limitations imposed when trying to perform the same action in a GUI. We also use it to test connections and processes, and to perform a host of administrative tasks. Many of our configurations are automated by creating a PowerShell script to execute configuration tasks. Using a script prevents errors in typing and ensures the same process is repeatable no matter who is doing it.<\/p>\n\n\n\n<p class=\"has-black-color has-text-color has-link-color wp-elements-b0677c2bf75c756c9c126cc15875326c\">Next time we&#8217;ll go into some basic, but essential, skills you can learn to enhance your experience in using your computer. <\/p>\n\n\n\n<p class=\"has-black-color has-text-color has-link-color wp-elements-c6917be07d64bd6c4eca3de3e37b1735\">If these sessions are helpful, drop a comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Discover the key differences between Graphical User Interfaces (GUI) and Command Line Interfaces (CLI) in this beginner-friendly blog post. Learn which interface suits your needs and why.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"nf_dc_page":"","_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"_kad_post_classname":"","_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[9],"tags":[387,396,50,575,578,173,684,238,257],"class_list":["post-1330","post","type-post","status-publish","format-standard","hentry","category-basics","tag-cli","tag-command-line-interface","tag-computer","tag-graphical-user-interface","tag-gui","tag-linux","tag-macos","tag-technology","tag-windows"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Exploring the GUI and the CLI - Oakwood Experience<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/oakwoodexperience.com\/exploring-the-gui-and-the-cli\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Exploring the GUI and the CLI - Oakwood Experience\" \/>\n<meta property=\"og:description\" content=\"Discover the key differences between Graphical User Interfaces (GUI) and Command Line Interfaces (CLI) in this beginner-friendly blog post. Learn which interface suits your needs and why.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/oakwoodexperience.com\/exploring-the-gui-and-the-cli\/\" \/>\n<meta property=\"og:site_name\" content=\"Oakwood Experience\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/profile.php?id=61563885192881\" \/>\n<meta property=\"article:published_time\" content=\"2024-05-30T21:56:42+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-08-12T18:40:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/grownuptech.com\/wp-content\/uploads\/2024\/05\/GUI-CLI.jpeg\" \/>\n<meta name=\"author\" content=\"Nancy Jones\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/x.com\/oakwood92297\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Nancy Jones\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/oakwoodexperience.com\\\/exploring-the-gui-and-the-cli\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/oakwoodexperience.com\\\/exploring-the-gui-and-the-cli\\\/\"},\"author\":{\"name\":\"Nancy Jones\",\"@id\":\"https:\\\/\\\/oakwoodexperience.com\\\/#\\\/schema\\\/person\\\/55a8ed6b0b18ff93e63bbba903d4dae3\"},\"headline\":\"Exploring the GUI and the CLI\",\"datePublished\":\"2024-05-30T21:56:42+00:00\",\"dateModified\":\"2024-08-12T18:40:30+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/oakwoodexperience.com\\\/exploring-the-gui-and-the-cli\\\/\"},\"wordCount\":1291,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/oakwoodexperience.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/oakwoodexperience.com\\\/exploring-the-gui-and-the-cli\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/grownuptech.com\\\/wp-content\\\/uploads\\\/2024\\\/05\\\/GUI-CLI.jpeg\",\"keywords\":[\"CLI\",\"Command line interface\",\"computer\",\"graphical user interface\",\"GUI\",\"Linux\",\"macOS\",\"technology\",\"Windows\"],\"articleSection\":[\"The Basics of How Things Work\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/oakwoodexperience.com\\\/exploring-the-gui-and-the-cli\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/oakwoodexperience.com\\\/exploring-the-gui-and-the-cli\\\/\",\"url\":\"https:\\\/\\\/oakwoodexperience.com\\\/exploring-the-gui-and-the-cli\\\/\",\"name\":\"Exploring the GUI and the CLI - Oakwood Experience\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/oakwoodexperience.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/oakwoodexperience.com\\\/exploring-the-gui-and-the-cli\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/oakwoodexperience.com\\\/exploring-the-gui-and-the-cli\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/grownuptech.com\\\/wp-content\\\/uploads\\\/2024\\\/05\\\/GUI-CLI.jpeg\",\"datePublished\":\"2024-05-30T21:56:42+00:00\",\"dateModified\":\"2024-08-12T18:40:30+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/oakwoodexperience.com\\\/exploring-the-gui-and-the-cli\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/oakwoodexperience.com\\\/exploring-the-gui-and-the-cli\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/oakwoodexperience.com\\\/exploring-the-gui-and-the-cli\\\/#primaryimage\",\"url\":\"https:\\\/\\\/grownuptech.com\\\/wp-content\\\/uploads\\\/2024\\\/05\\\/GUI-CLI.jpeg\",\"contentUrl\":\"https:\\\/\\\/grownuptech.com\\\/wp-content\\\/uploads\\\/2024\\\/05\\\/GUI-CLI.jpeg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/oakwoodexperience.com\\\/exploring-the-gui-and-the-cli\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/oakwoodexperience.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Exploring the GUI and the CLI\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/oakwoodexperience.com\\\/#website\",\"url\":\"https:\\\/\\\/oakwoodexperience.com\\\/\",\"name\":\"Oakwood Experience\",\"description\":\"Technology news, information, commentary, tutorials, and deep dives, and my photography journey.\",\"publisher\":{\"@id\":\"https:\\\/\\\/oakwoodexperience.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/oakwoodexperience.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/oakwoodexperience.com\\\/#organization\",\"name\":\"Oakwood Experience\",\"url\":\"https:\\\/\\\/oakwoodexperience.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/oakwoodexperience.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/oakwoodexperience.com\\\/staging\\\/2633\\\/wp-content\\\/uploads\\\/2024\\\/07\\\/Oakwood-Experience.png?fit=1000%2C885&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/oakwoodexperience.com\\\/staging\\\/2633\\\/wp-content\\\/uploads\\\/2024\\\/07\\\/Oakwood-Experience.png?fit=1000%2C885&ssl=1\",\"width\":1000,\"height\":885,\"caption\":\"Oakwood Experience\"},\"image\":{\"@id\":\"https:\\\/\\\/oakwoodexperience.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/oakwoodexperience.com\\\/#\\\/schema\\\/person\\\/55a8ed6b0b18ff93e63bbba903d4dae3\",\"name\":\"Nancy Jones\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b844525c51c8c622b37a68f8239add25f67d81fdee39b2f3d9c6e80dfde4e31a?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b844525c51c8c622b37a68f8239add25f67d81fdee39b2f3d9c6e80dfde4e31a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b844525c51c8c622b37a68f8239add25f67d81fdee39b2f3d9c6e80dfde4e31a?s=96&d=mm&r=g\",\"caption\":\"Nancy Jones\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/profile.php?id=61563885192881\",\"https:\\\/\\\/www.instagram.com\\\/southernfriedyanqui\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/feed\\\/\",\"https:\\\/\\\/x.com\\\/https:\\\/\\\/x.com\\\/oakwood92297\",\"https:\\\/\\\/www.youtube.com\\\/@nancyjones6235\"],\"url\":\"https:\\\/\\\/oakwoodexperience.com\\\/staging\\\/2633\\\/author\\\/nancyjones36507\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Exploring the GUI and the CLI - Oakwood Experience","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/oakwoodexperience.com\/exploring-the-gui-and-the-cli\/","og_locale":"en_US","og_type":"article","og_title":"Exploring the GUI and the CLI - Oakwood Experience","og_description":"Discover the key differences between Graphical User Interfaces (GUI) and Command Line Interfaces (CLI) in this beginner-friendly blog post. Learn which interface suits your needs and why.","og_url":"https:\/\/oakwoodexperience.com\/exploring-the-gui-and-the-cli\/","og_site_name":"Oakwood Experience","article_author":"https:\/\/www.facebook.com\/profile.php?id=61563885192881","article_published_time":"2024-05-30T21:56:42+00:00","article_modified_time":"2024-08-12T18:40:30+00:00","og_image":[{"url":"https:\/\/grownuptech.com\/wp-content\/uploads\/2024\/05\/GUI-CLI.jpeg","type":"","width":"","height":""}],"author":"Nancy Jones","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/x.com\/oakwood92297","twitter_misc":{"Written by":"Nancy Jones","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/oakwoodexperience.com\/exploring-the-gui-and-the-cli\/#article","isPartOf":{"@id":"https:\/\/oakwoodexperience.com\/exploring-the-gui-and-the-cli\/"},"author":{"name":"Nancy Jones","@id":"https:\/\/oakwoodexperience.com\/#\/schema\/person\/55a8ed6b0b18ff93e63bbba903d4dae3"},"headline":"Exploring the GUI and the CLI","datePublished":"2024-05-30T21:56:42+00:00","dateModified":"2024-08-12T18:40:30+00:00","mainEntityOfPage":{"@id":"https:\/\/oakwoodexperience.com\/exploring-the-gui-and-the-cli\/"},"wordCount":1291,"commentCount":1,"publisher":{"@id":"https:\/\/oakwoodexperience.com\/#organization"},"image":{"@id":"https:\/\/oakwoodexperience.com\/exploring-the-gui-and-the-cli\/#primaryimage"},"thumbnailUrl":"https:\/\/grownuptech.com\/wp-content\/uploads\/2024\/05\/GUI-CLI.jpeg","keywords":["CLI","Command line interface","computer","graphical user interface","GUI","Linux","macOS","technology","Windows"],"articleSection":["The Basics of How Things Work"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/oakwoodexperience.com\/exploring-the-gui-and-the-cli\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/oakwoodexperience.com\/exploring-the-gui-and-the-cli\/","url":"https:\/\/oakwoodexperience.com\/exploring-the-gui-and-the-cli\/","name":"Exploring the GUI and the CLI - Oakwood Experience","isPartOf":{"@id":"https:\/\/oakwoodexperience.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/oakwoodexperience.com\/exploring-the-gui-and-the-cli\/#primaryimage"},"image":{"@id":"https:\/\/oakwoodexperience.com\/exploring-the-gui-and-the-cli\/#primaryimage"},"thumbnailUrl":"https:\/\/grownuptech.com\/wp-content\/uploads\/2024\/05\/GUI-CLI.jpeg","datePublished":"2024-05-30T21:56:42+00:00","dateModified":"2024-08-12T18:40:30+00:00","breadcrumb":{"@id":"https:\/\/oakwoodexperience.com\/exploring-the-gui-and-the-cli\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/oakwoodexperience.com\/exploring-the-gui-and-the-cli\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/oakwoodexperience.com\/exploring-the-gui-and-the-cli\/#primaryimage","url":"https:\/\/grownuptech.com\/wp-content\/uploads\/2024\/05\/GUI-CLI.jpeg","contentUrl":"https:\/\/grownuptech.com\/wp-content\/uploads\/2024\/05\/GUI-CLI.jpeg"},{"@type":"BreadcrumbList","@id":"https:\/\/oakwoodexperience.com\/exploring-the-gui-and-the-cli\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/oakwoodexperience.com\/"},{"@type":"ListItem","position":2,"name":"Exploring the GUI and the CLI"}]},{"@type":"WebSite","@id":"https:\/\/oakwoodexperience.com\/#website","url":"https:\/\/oakwoodexperience.com\/","name":"Oakwood Experience","description":"Technology news, information, commentary, tutorials, and deep dives, and my photography journey.","publisher":{"@id":"https:\/\/oakwoodexperience.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/oakwoodexperience.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/oakwoodexperience.com\/#organization","name":"Oakwood Experience","url":"https:\/\/oakwoodexperience.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/oakwoodexperience.com\/#\/schema\/logo\/image\/","url":"https:\/\/i0.wp.com\/oakwoodexperience.com\/staging\/2633\/wp-content\/uploads\/2024\/07\/Oakwood-Experience.png?fit=1000%2C885&ssl=1","contentUrl":"https:\/\/i0.wp.com\/oakwoodexperience.com\/staging\/2633\/wp-content\/uploads\/2024\/07\/Oakwood-Experience.png?fit=1000%2C885&ssl=1","width":1000,"height":885,"caption":"Oakwood Experience"},"image":{"@id":"https:\/\/oakwoodexperience.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/oakwoodexperience.com\/#\/schema\/person\/55a8ed6b0b18ff93e63bbba903d4dae3","name":"Nancy Jones","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/b844525c51c8c622b37a68f8239add25f67d81fdee39b2f3d9c6e80dfde4e31a?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/b844525c51c8c622b37a68f8239add25f67d81fdee39b2f3d9c6e80dfde4e31a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b844525c51c8c622b37a68f8239add25f67d81fdee39b2f3d9c6e80dfde4e31a?s=96&d=mm&r=g","caption":"Nancy Jones"},"sameAs":["https:\/\/www.facebook.com\/profile.php?id=61563885192881","https:\/\/www.instagram.com\/southernfriedyanqui\/","https:\/\/www.linkedin.com\/feed\/","https:\/\/x.com\/https:\/\/x.com\/oakwood92297","https:\/\/www.youtube.com\/@nancyjones6235"],"url":"https:\/\/oakwoodexperience.com\/staging\/2633\/author\/nancyjones36507\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/oakwoodexperience.com\/staging\/2633\/wp-json\/wp\/v2\/posts\/1330","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/oakwoodexperience.com\/staging\/2633\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/oakwoodexperience.com\/staging\/2633\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/oakwoodexperience.com\/staging\/2633\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/oakwoodexperience.com\/staging\/2633\/wp-json\/wp\/v2\/comments?post=1330"}],"version-history":[{"count":1,"href":"https:\/\/oakwoodexperience.com\/staging\/2633\/wp-json\/wp\/v2\/posts\/1330\/revisions"}],"predecessor-version":[{"id":1573,"href":"https:\/\/oakwoodexperience.com\/staging\/2633\/wp-json\/wp\/v2\/posts\/1330\/revisions\/1573"}],"wp:attachment":[{"href":"https:\/\/oakwoodexperience.com\/staging\/2633\/wp-json\/wp\/v2\/media?parent=1330"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/oakwoodexperience.com\/staging\/2633\/wp-json\/wp\/v2\/categories?post=1330"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/oakwoodexperience.com\/staging\/2633\/wp-json\/wp\/v2\/tags?post=1330"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}