{"id":1723,"date":"2022-10-30T12:30:00","date_gmt":"2022-10-30T17:30:00","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=1723"},"modified":"2022-10-13T14:16:20","modified_gmt":"2022-10-13T19:16:20","slug":"5-most-used-echo-commands-in-linux-with-examples","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/5-most-used-echo-commands-in-linux-with-examples\/","title":{"rendered":"5 Most Used Echo Commands in Linux With Examples"},"content":{"rendered":"\n<div id=\"linux-1993769677\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>This blog post will show you the five most used echo commands in Linux with examples.<\/p>\n\n\n\n<p>The echo command in Linux is a command that outputs the strings passed to its arguments. The echo command is supported on <a href=\"https:\/\/linuxhostsupport.com\/\" title=\"\">various Linux distributions<\/a> such as Ubuntu, CentOS, Debian, and other OS like Windows. This command is most used in shell scripts and batch files to output status text to the screen.<\/p>\n\n\n\n<p>In this tutorial, we will use the <a href=\"https:\/\/www.rosehosting.com\/ubuntu-hosting\/\" title=\"\">latest Ubuntu 22.04 OS<\/a>, but you can choose any Linux distro per your choice. Let&#8217;s get started!<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<ul class=\"wp-block-list\"><li>A server with Ubuntu 22.04 OS<\/li><li>User privileges: root or non-root user with sudo privileges<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Update the System<\/h2>\n\n\n\n<p>It is recommended to update the system packages to the latest versions available.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt update -y &amp;&amp; sudo apt upgrade -y<\/pre>\n\n\n\n<p>Once the system is updated, we are ready to show you the five most used echo commands in Linux.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Syntax of the echo command<\/h2>\n\n\n\n<p>The syntax of the echo command is the following:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">echo [option(s)] [string(s)]<\/pre>\n\n\n\n<p>The echo command is simple and is being executed with the main word <strong>echo<\/strong> using some options and strings next to it.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">1. Display simple line to standard output<\/h2>\n\n\n\n<p>To display a single line as text on standard output, execute the following echo command with the string:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">echo This blog post will teach you about the echo command.<\/pre>\n\n\n\n<p>This is how looks the output of this command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:~# echo This blog post will teach you about the echo command.\n<strong>This blog post will teach you about the echo command.<\/strong>\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">2. Print Files and Folders<\/h2>\n\n\n\n<p>The echo command can be used to print all files and folders in some directory as an alternative to the <strong>ls -al<\/strong> command for listing.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">echo *<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">This is the output of the command above:<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:\/# echo *\nbin boot core dev etc home lib lib32 lib64 libx32 lost+found media mnt opt proc root run sbin snap srv sys tmp usr var\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">3. Redirect operator to output text in a file<\/h2>\n\n\n\n<p>The following command will redirect the output in the file instead of the standard output on the command line.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">echo * &gt; outputfile.txt<\/pre>\n\n\n\n<p>To check the content of the file, execute the <strong>cat outputfile.txt<\/strong> command, and you should receive the same as in the previous paragraph:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:\/# cat outputfile.txt\nbin boot core dev etc home lib lib32 lib64 libx32 lost+found media mnt opt proc root run sbin snap srv sys tmp usr var\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">4. Removing Text Spacing<\/h2>\n\n\n\n<p>To remove the text spacing in some lines, execute the following command with option <strong>-b<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">echo -e \"This \\bblog \\bpost \\bwill \\bhelp \\byou \\bwith \\understanding \\bthe \\becho \\bcommand\"<\/pre>\n\n\n\n<p>You should get the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:\/# echo -e \"This \\bblog \\bpost \\bwill \\bhelp \\byou \\bwith \\bunderstanding \\bthe \\becho \\bcommand\"\nThisblogpostwillhelpyouwithunderstaingtheechocommand\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">5. Displaying the Text in Multiple Lines<\/h2>\n\n\n\n<p>To display the text in multiple lines, execute the following command with option <strong>\\n<\/strong>.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">echo -e \"This \\nblog \\npost \\nwill \\nhelp \\nyou \\nwith \\nunderstanding \\nthe \\necho \\ncommand\"<\/pre>\n\n\n\n<p>You should get the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:\/# echo -e \"This \\nblog \\npost \\nwill \\nhelp \\nyou \\nwith \\nunderstaing \\nthe \\necho \\ncommand\"\nThis\nblog\npost\nwill\nhelp\nyou\nwith\nunderstanding\nthe\necho\ncommand<\/pre>\n\n\n\n<p>These were the most used echo commands on a daily basis by system administrators and other Linux users. If you want to know more about the echo command, just execute the command <strong>man echo<\/strong>, and you will get a complete definition of echo and its usage:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:\/# man echo\nECHO(1)                                                                    User Commands                                                                    ECHO(1)\n\nNAME\n       echo - display a line of text\n\nSYNOPSIS\n       echo [SHORT-OPTION]... [STRING]...\n       echo LONG-OPTION\n\nDESCRIPTION\n       Echo the STRING(s) to standard output.\n\n       -n     do not output the trailing newline\n\n       -e     enable interpretation of backslash escapes\n\n       -E     disable interpretation of backslash escapes (default)\n\n       --help display this help and exit\n\n       --version\n              output version information and exit\n\n       If -e is in effect, the following sequences are recognized:\n\n       .\n       .\n       .\n       .\n       .\n<\/pre>\n\n\n\n<p>That&#8217;s it. You just learned to use the echo command on Linux with examples. Of course, if you need some help with this, you just need to sign up for <a href=\"https:\/\/www.rosehosting.com\/linux-vps-hosting\/\" title=\"\">one of our NVMe plans<\/a> and submit a support ticket. Our admins will start work on your request immediately. We are available 24\/7.<\/p>\n\n\n\n<p>If you liked this post about the five most used echo commands in Linux with examples, please share it with your friends on social networks or simply leave a reply below.<\/p><div id=\"linux-569125941\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>This blog post will show you the five most used echo commands in Linux with examples. The echo command in Linux is a command that outputs the strings passed to its arguments. The echo command is supported on various Linux distributions such as Ubuntu, CentOS, Debian, and other OS like Windows. This command is most [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1724,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5,228],"tags":[230,45],"class_list":["post-1723","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-guides","category-linux","tag-echo-commands","tag-linux"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>5 Most Used Echo Commands in Linux With Examples | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"This blog post will show you the five most used echo commands in Linux with examples. Join us and learn more about this topic from our in-depth guide.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/5-most-used-echo-commands-in-linux-with-examples\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"5 Most Used Echo Commands in Linux With Examples | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"This blog post will show you the five most used echo commands in Linux with examples. Join us and learn more about this topic from our in-depth guide.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/5-most-used-echo-commands-in-linux-with-examples\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2022-10-30T17:30:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2022\/10\/5-most-used-echo-commands-in-linux-with-examples.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"372\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/5-most-used-echo-commands-in-linux-with-examples\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/5-most-used-echo-commands-in-linux-with-examples\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"5 Most Used Echo Commands in Linux With Examples\",\"datePublished\":\"2022-10-30T17:30:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/5-most-used-echo-commands-in-linux-with-examples\/\"},\"wordCount\":480,\"commentCount\":1,\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/5-most-used-echo-commands-in-linux-with-examples\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2022\/10\/5-most-used-echo-commands-in-linux-with-examples.jpg\",\"keywords\":[\"echo commands\",\"linux\"],\"articleSection\":[\"Guides\",\"Linux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/5-most-used-echo-commands-in-linux-with-examples\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/5-most-used-echo-commands-in-linux-with-examples\/\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/5-most-used-echo-commands-in-linux-with-examples\/\",\"name\":\"5 Most Used Echo Commands in Linux With Examples | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/5-most-used-echo-commands-in-linux-with-examples\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/5-most-used-echo-commands-in-linux-with-examples\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2022\/10\/5-most-used-echo-commands-in-linux-with-examples.jpg\",\"datePublished\":\"2022-10-30T17:30:00+00:00\",\"author\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"This blog post will show you the five most used echo commands in Linux with examples. Join us and learn more about this topic from our in-depth guide.\",\"breadcrumb\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/5-most-used-echo-commands-in-linux-with-examples\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/5-most-used-echo-commands-in-linux-with-examples\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/5-most-used-echo-commands-in-linux-with-examples\/#primaryimage\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2022\/10\/5-most-used-echo-commands-in-linux-with-examples.jpg\",\"contentUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2022\/10\/5-most-used-echo-commands-in-linux-with-examples.jpg\",\"width\":742,\"height\":372,\"caption\":\"5 most used echo commands in linux with examples\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/5-most-used-echo-commands-in-linux-with-examples\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/linuxhostsupport.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"5 Most Used Echo Commands in Linux With Examples\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#website\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"5 Most Used Echo Commands in Linux With Examples | LinuxHostSupport","description":"This blog post will show you the five most used echo commands in Linux with examples. Join us and learn more about this topic from our in-depth guide.","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:\/\/linuxhostsupport.com\/blog\/5-most-used-echo-commands-in-linux-with-examples\/","og_locale":"en_US","og_type":"article","og_title":"5 Most Used Echo Commands in Linux With Examples | LinuxHostSupport","og_description":"This blog post will show you the five most used echo commands in Linux with examples. Join us and learn more about this topic from our in-depth guide.","og_url":"https:\/\/linuxhostsupport.com\/blog\/5-most-used-echo-commands-in-linux-with-examples\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2022-10-30T17:30:00+00:00","og_image":[{"width":742,"height":372,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2022\/10\/5-most-used-echo-commands-in-linux-with-examples.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/5-most-used-echo-commands-in-linux-with-examples\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/5-most-used-echo-commands-in-linux-with-examples\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"5 Most Used Echo Commands in Linux With Examples","datePublished":"2022-10-30T17:30:00+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/5-most-used-echo-commands-in-linux-with-examples\/"},"wordCount":480,"commentCount":1,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/5-most-used-echo-commands-in-linux-with-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2022\/10\/5-most-used-echo-commands-in-linux-with-examples.jpg","keywords":["echo commands","linux"],"articleSection":["Guides","Linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/5-most-used-echo-commands-in-linux-with-examples\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/5-most-used-echo-commands-in-linux-with-examples\/","url":"https:\/\/linuxhostsupport.com\/blog\/5-most-used-echo-commands-in-linux-with-examples\/","name":"5 Most Used Echo Commands in Linux With Examples | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/5-most-used-echo-commands-in-linux-with-examples\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/5-most-used-echo-commands-in-linux-with-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2022\/10\/5-most-used-echo-commands-in-linux-with-examples.jpg","datePublished":"2022-10-30T17:30:00+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"This blog post will show you the five most used echo commands in Linux with examples. Join us and learn more about this topic from our in-depth guide.","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/5-most-used-echo-commands-in-linux-with-examples\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/5-most-used-echo-commands-in-linux-with-examples\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/5-most-used-echo-commands-in-linux-with-examples\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2022\/10\/5-most-used-echo-commands-in-linux-with-examples.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2022\/10\/5-most-used-echo-commands-in-linux-with-examples.jpg","width":742,"height":372,"caption":"5 most used echo commands in linux with examples"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/5-most-used-echo-commands-in-linux-with-examples\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"5 Most Used Echo Commands in Linux With Examples"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1723","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=1723"}],"version-history":[{"count":1,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1723\/revisions"}],"predecessor-version":[{"id":1725,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1723\/revisions\/1725"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/1724"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=1723"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=1723"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=1723"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}