{"id":15182,"date":"2021-03-20T15:25:15","date_gmt":"2021-03-20T15:25:15","guid":{"rendered":"https:\/\/linuxiac.com\/?p=15182"},"modified":"2022-04-18T09:24:05","modified_gmt":"2022-04-18T09:24:05","slug":"how-to-use-pipes-and-named-pipes-in-linux-explained-with-examples","status":"publish","type":"post","link":"https:\/\/linuxiac.com\/how-to-use-pipes-and-named-pipes-in-linux-explained-with-examples\/","title":{"rendered":"How to Use Pipes and Named Pipes in Linux (with Examples)"},"content":{"rendered":"\n<p>Pipes are one of Linux&#8217;s and Unix-like operating systems&#8217; most valuable command-line capabilities. They are utilized in a variety of applications. If you look at any Linux command-line article, you&#8217;ll notice that pipes appear frequently.<\/p>\n\n\n\n<p>The vertical bar symbol <code>|<\/code> denotes a pipe. Because of the pipe, you can take the output from one command and feed it to another command as input.<\/p>\n\n\n\n<p>As a result, the output of one command can be used as the input for another, and the output of that command can be used as the input for the next command, and so on.<\/p>\n\n\n\n<p>So you\u2019re not limited to a single piped command. You can stack them as many times as you like.<\/p>\n\n\n\n<p>In other words, a pipe is a form of redirection used in Linux to send the output of one program to another program for further processing. Pipes allow you to do operations that <a href=\"https:\/\/linuxiac.com\/linux-shells\/\">the shell<\/a> does not support out of the box.<\/p>\n\n\n\n<p>The syntax for the&nbsp;pipe&nbsp;or&nbsp;unnamed pipe&nbsp;command is the&nbsp;<code>|<\/code>&nbsp;character between any two commands:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-1\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">command1 | command2 | ... | commandN<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-1\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<h2 class=\"wp-block-heading\" id=\"h-how-does-a-pipe-work-in-linux\">How Does a Pipe Work in Linux<\/h2>\n\n\n\n<p>To see how pipe works, let\u2019s look at the examples below. We have a directory full of many different types of files, and we want to know how many files of a particular kind are in it.<\/p>\n\n\n\n<p>So we can get a list of files easily using the <code>ls<\/code> command:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-2\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">ls -l<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-2\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2021\/03\/how-does-pipes-works.png\"><img decoding=\"async\" width=\"932\" height=\"610\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2021\/03\/how-does-pipes-works.png\" alt=\"How does a pipe work in Linux\" class=\"wp-image-43414\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2021\/03\/how-does-pipes-works.png 932w, https:\/\/linuxiac.com\/wp-content\/uploads\/2021\/03\/how-does-pipes-works-380x249.png 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2021\/03\/how-does-pipes-works-768x503.png 768w\" sizes=\"(max-width: 932px) 100vw, 932px\" \/><\/a><\/figure>\n\n\n\n<p>We&#8217;ll use grep to separate the types of files we&#8217;re looking for. For example, we seek files with the word &#8220;<em>txt<\/em>&#8221; in their name or as a file extension.<\/p>\n\n\n\n<p>We will use the special shell character <code>|<\/code> to direct <code>ls<\/code>&#8216; output to <code>grep<\/code>.<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-3\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">ls | grep txt<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-3\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2021\/03\/how-does-pipes-works2.png\"><img decoding=\"async\" width=\"930\" height=\"189\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2021\/03\/how-does-pipes-works2.png\" alt=\"How does a pipe work in Linux\" class=\"wp-image-43417\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2021\/03\/how-does-pipes-works2.png 930w, https:\/\/linuxiac.com\/wp-content\/uploads\/2021\/03\/how-does-pipes-works2-380x77.png 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2021\/03\/how-does-pipes-works2-768x156.png 768w\" sizes=\"(max-width: 930px) 100vw, 930px\" \/><\/a><\/figure>\n\n\n\n<p>As you can see from the image above, the ls command output was not sent to the terminal window.<\/p>\n\n\n\n<p>Therefore, the result is not displayed on the screen but is redirected to the input of the grep command. The output we see above comes from grep, the last command in this chain.<\/p>\n\n\n\n<p>Now, let&#8217;s start extending our chain. We can\u00a0count files &#8220;<em>txt<\/em>&#8221;\u00a0by adding the <code>wc<\/code> command to the chain. We will use the <code>-l<\/code> option (number of lines) with <code>wc<\/code>.<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-4\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">ls | grep txt | wc -l<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-4\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2021\/03\/linux-pipes-count-files.png\"><img decoding=\"async\" width=\"927\" height=\"189\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2021\/03\/linux-pipes-count-files.png\" alt=\"Countinf files in Linux by using pipes\" class=\"wp-image-43420\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2021\/03\/linux-pipes-count-files.png 927w, https:\/\/linuxiac.com\/wp-content\/uploads\/2021\/03\/linux-pipes-count-files-380x77.png 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2021\/03\/linux-pipes-count-files-768x157.png 768w\" sizes=\"(max-width: 927px) 100vw, 927px\" \/><\/a><\/figure>\n\n\n\n<p>In the example above, <code>grep<\/code> is no longer the last command in the chain, so we do not see its output. Instead, the output of <code>grep<\/code> is fed into the <code>wc<\/code> command.<\/p>\n\n\n\n<p>The result that we see in the terminal window comes from <code>wc<\/code>. It reports two files, &#8220;<em>txt<\/em>&#8221; in the directory.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-what-is-a-named-pipe-in-linux\">What Is a Named Pipe in Linux?<\/h2>\n\n\n\n<p>As the name itself suggests, these are pipes with names. One of the key differences between regular pipes and&amp; named pipes is that <strong>named pipes have a presence in the file system<\/strong>. That is, they show up like files.<\/p>\n\n\n\n<p>The named pipe in Linux is a method for passing information from one computer process to another using a pipe given a specific name. Named pipes are also known as FIFO, which stands for\u00a0<strong>First In, First Out<\/strong>.<\/p>\n\n\n\n<p>You can create a named pipe using the <code>mkfifo<\/code> command. For example:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-5\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">&lt;code&gt;mkfifo mypipe&lt;\/code&gt;<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-5\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>You can tell if a file is a named pipe by the&nbsp;<code>p<\/code>&nbsp;bit in the file permissions section.<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-6\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">ls -l mypipe<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-6\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-7\" data-shcb-language-name=\"CSS\" data-shcb-language-slug=\"css\"><span><code class=\"hljs language-css\"><span class=\"hljs-selector-tag\">prw-r--r--<\/span>  1 <span class=\"hljs-selector-tag\">root<\/span>     <span class=\"hljs-selector-tag\">root<\/span>         0 <span class=\"hljs-selector-tag\">Mar<\/span> 20 12<span class=\"hljs-selector-pseudo\">:58<\/span> <span class=\"hljs-selector-tag\">mypipe<\/span><\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-7\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">CSS<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">css<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>The named pipes are files on the file system itself. Unlike a standard pipe, a named pipe is accessed as part of the filesystem, just like any other file type.<\/p>\n\n\n\n<p>The named pipe content resides in memory rather than being written to disk. So, it is passed only when both ends of the pipe have been opened. You can write to a pipe multiple times before it is iYoud at the other end and read.<\/p>\n\n\n\n<p>Using named pipes lets you establish a process in which one process writes to a pipe, and another reads from a pipe without much concern about trying to time or carefully orchestrate their interaction.<\/p>\n\n\n\n<p>Let&#8217;s look at the examples below to see how named pipes work. First, create our named pipe:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-8\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">mkfifo mypipe<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-8\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>Now, let&#8217;s consume messages with this pipe.<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-9\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">tail -f mypipe<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-9\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Then, open another terminal window and write a message to this pipe:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-10\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\"><span class=\"hljs-built_in\">echo<\/span> <span class=\"hljs-string\">\"hi\"<\/span> &gt;&gt; mypipe<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-10\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>Now, in the first window, you can see the &#8220;<em>hi<\/em>&#8221; printed out:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-11\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">tail -f mypipe\nhi<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-11\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>Because it is a pipe and the message has been consumed, if we check the file size, you can see it is still 0:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-12\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">ls -l mypipe<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-12\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-13\" data-shcb-language-name=\"CSS\" data-shcb-language-slug=\"css\"><span><code class=\"hljs language-css\"><span class=\"hljs-selector-tag\">prw-r--r--<\/span> 1 <span class=\"hljs-selector-tag\">root<\/span> <span class=\"hljs-selector-tag\">root<\/span> 0 <span class=\"hljs-selector-tag\">Mar<\/span> 20 14<span class=\"hljs-selector-pseudo\">:11<\/span> <span class=\"hljs-selector-tag\">mypipe<\/span><\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-13\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">CSS<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">css<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Since a named pipe is just a <a href=\"https:\/\/linuxiac.com\/lfs-list-linux-file-system\/\">Linux file<\/a>, we can use the rm command to remove one. Therefore, to remove the pipe we created in the previous examples, we would run:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-14\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">rm mypipe<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-14\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<h2 class=\"wp-block-heading\" id=\"h-when-to-use-regular-or-named-pipes\">When to Use Regular or Named Pipes<\/h2>\n\n\n\n<p>Using a regular pipe instead of a named pipe in Linux depends on the characteristics we\u2019re looking for.&nbsp;Some can be persistence, two-way communication, having a filename, creating a filter, and <a href=\"https:\/\/linuxiac.com\/how-to-use-ssh-tunneling\/\">restricting access<\/a> permissions.<\/p>\n\n\n\n<p>For example, using an anonymous pipe seems the most appropriate option if we want to filter a command&#8217;s output multiple times. On the other hand, if we need a filename and don&#8217;t want to store data on disk, we&#8217;re looking for a named pipe.<\/p>\n\n\n\n<p>In conclusion, the next time you work with commands in the <a href=\"https:\/\/linuxiac.com\/best-gpu-accelerated-terminal-emulators\/\" target=\"_blank\" rel=\"noreferrer noopener\">Linux terminal<\/a> and find yourself moving data between commands, use pipes &#8211; they will make the process quick and easy.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>This article showed you the versatility of pipes when used in <a href=\"https:\/\/linuxiac.com\/basic-linux-commands\/\" target=\"_blank\" rel=\"noreferrer noopener\">Linux commands<\/a>. Although relatively simple, it can resolve a wide range of complicated queries.<\/p>\n\n\n\n<p>For more about the\u00a0<code>pipe<\/code>\u00a0command in Linux, consult its\u00a0<a href=\"https:\/\/man7.org\/linux\/man-pages\/man7\/pipe.7.html\" target=\"_blank\" rel=\"noreferrer noopener\">manual page<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This article will show how regular and named pipes work in Linux, how to use them, and how they differ from each other.<\/p>\n","protected":false},"author":10,"featured_media":15194,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8,4417],"tags":[1484,3302],"class_list":["post-15182","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tips","category-linux-knowledge","tag-commands","tag-pipe"],"blocksy_meta":{"styles_descriptor":{"styles":{"desktop":"","tablet":"","mobile":""},"google_fonts":[],"version":6},"post_title_panel":"","has_hero_section":"default","cf9c9151f2d169775442e475214367a2":"","hero_section":"type-2","hero_elements":[{"id":"custom_title","enabled":true,"heading_tag":"h1","title":"Home","__id":"j4LNO-odCYbKUJh8FeWx6"},{"id":"custom_description","enabled":false,"description_visibility":{"desktop":true,"tablet":true,"mobile":false},"__id":"AXGzcPrYxcfG0zDyFiZci"},{"id":"custom_meta","enabled":true,"meta_elements":[{"id":"author","enabled":true,"label":"By","has_author_avatar":"yes","avatar_size":50,"__id":"VPO8z3N3VeUtvA91WIxX4"},{"id":"post_date","enabled":false,"label":"On","date_format_source":"default","date_format":"M j, Y","__id":"EDx0xlJcvDLbwGEExODpu"},{"id":"updated_date","enabled":true,"label":"Updated","date_format_source":"default","date_format":"M j, Y","__id":"VN31ls-Wm8anOAuj0o2r4"},{"id":"categories","enabled":false,"label":"In","style":"simple","__id":"6wwW4RQJ53qszWyLL-WKj"},{"id":"comments","enabled":true,"__id":"z7P655uvsr4XrNvTjQBer"}],"page_meta_elements":{"joined":true,"articles_count":true,"comments":true},"__id":"DZ4UiS3MRp-od15twTmB5","meta_type":"label","meta_divider":"circle"},{"id":"breadcrumbs","enabled":false,"__id":"ij1K5VADpPS5wLEq7Qopk"}],"e4b0443f5882efe3e05922e8cf55cacf":"","hero_alignment1":"CT_CSS_SKIP_RULE","hero_margin":40,"hero_alignment2":"center","hero_vertical_alignment":"center","3f4ca6931762f6622ddd18b789320482":"","hero_structure":"normal","767574b65d2992abd7e53331120fe6a3":"","page_title_bg_type":"custom_image","custom_hero_background":{"attachment_id":43432,"url":"https:\/\/linuxiac.com\/wp-content\/uploads\/2021\/03\/pipe-header-1024x226.png"},"page_title_image_size":"full","parallax":{"desktop":false,"tablet":false,"mobile":false},"caa878dda8f983ecf18792ce799041f4":"","hero_height":"250px","pageTitleFont":{"family":"Default","variation":"Default","size":{"desktop":"2.8em","tablet":"2.8em","mobile":"2.8em","__changed":[]},"line-height":"CT_CSS_SKIP_RULE","letter-spacing":"CT_CSS_SKIP_RULE","text-transform":"CT_CSS_SKIP_RULE","text-decoration":"CT_CSS_SKIP_RULE"},"pageTitleFontColor":{"default":{"color":"CT_CSS_SKIP_RULEDEFAULT"}},"pageMetaFont":{"family":"Default","variation":"n6","size":"12px","line-height":"1.3","letter-spacing":"CT_CSS_SKIP_RULE","text-transform":"uppercase","text-decoration":"CT_CSS_SKIP_RULE"},"pageMetaFontColor":{"default":{"color":"CT_CSS_SKIP_RULEDEFAULT"},"hover":{"color":"CT_CSS_SKIP_RULEDEFAULT"}},"page_meta_button_type_font_colors":{"default":{"color":"CT_CSS_SKIP_RULEDEFAULT"},"hover":{"color":"CT_CSS_SKIP_RULEDEFAULT"}},"page_meta_button_type_background_colors":{"default":{"color":"CT_CSS_SKIP_RULEDEFAULT"},"hover":{"color":"CT_CSS_SKIP_RULEDEFAULT"}},"pageExcerptFont":{"family":"Default","variation":"Default","size":"CT_CSS_SKIP_RULE","line-height":"CT_CSS_SKIP_RULE","letter-spacing":"CT_CSS_SKIP_RULE","text-transform":"CT_CSS_SKIP_RULE","text-decoration":"CT_CSS_SKIP_RULE"},"pageExcerptColor":{"default":{"color":"CT_CSS_SKIP_RULEDEFAULT"}},"breadcrumbsFont":{"family":"Default","variation":"Default","size":"CT_CSS_SKIP_RULE","line-height":"CT_CSS_SKIP_RULE","letter-spacing":"CT_CSS_SKIP_RULE","text-transform":"CT_CSS_SKIP_RULE","text-decoration":"CT_CSS_SKIP_RULE"},"breadcrumbsFontColor":{"default":{"color":"CT_CSS_SKIP_RULEDEFAULT"},"initial":{"color":"CT_CSS_SKIP_RULEDEFAULT"},"hover":{"color":"CT_CSS_SKIP_RULEDEFAULT"}},"pageTitleOverlay":{"background_type":"color","background_pattern":"type-1","background_image":{"attachment_id":null,"x":0,"y":0},"gradient":"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)","background_repeat":"repeat","background_size":"auto","background_attachment":"scroll","patternColor":{"default":{"color":"#e5e7ea"}},"overlayColor":{"default":{"color":"CT_CSS_SKIP_RULE"}},"backgroundColor":{"default":{"color":"CT_CSS_SKIP_RULE"}}},"pageTitleBackground":{"background_type":"color","background_pattern":"type-1","background_image":{"attachment_id":null,"x":0,"y":0},"gradient":"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)","background_repeat":"repeat","background_size":"auto","background_attachment":"scroll","patternColor":{"default":{"color":"#e5e7ea"}},"overlayColor":{"default":{"color":"CT_CSS_SKIP_RULE"}},"backgroundColor":{"default":{"color":"var(--theme-palette-color-6)"}}},"pageTitlePadding":{"top":"50px","bottom":"50px","left":"auto","right":"auto","linked":true},"db38d29a2c9b98214412d6ea09da7636":"","page_structure_type":"default","2d8e7544fdf610b2f1b7dff36b9a3410":"","content_style_source":"inherit","content_style":"wide","f1668ef13159ebdbe57eb987a66834e2":"","vertical_spacing_source":"inherit","content_area_spacing":"both","background":{"background_type":"color","background_pattern":"type-1","background_image":{"attachment_id":null,"x":0,"y":0},"gradient":"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)","background_repeat":"repeat","background_size":"auto","background_attachment":"scroll","patternColor":{"default":{"color":"#e5e7ea"}},"overlayColor":{"default":{"color":"CT_CSS_SKIP_RULE"}},"backgroundColor":{"default":{"color":"CT_CSS_SKIP_RULE"}}},"content_background":{"background_type":"color","background_pattern":"type-1","background_image":{"attachment_id":null,"x":0,"y":0},"gradient":"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)","background_repeat":"repeat","background_size":"auto","background_attachment":"scroll","patternColor":{"default":{"color":"#e5e7ea"}},"overlayColor":{"default":{"color":"CT_CSS_SKIP_RULE"}},"backgroundColor":{"default":{"color":"var(--theme-palette-color-8)"}}},"content_boxed_shadow":{"inherit":false,"blur":18,"spread":-6,"v_offset":12,"h_offset":0,"inset":false,"enable":true,"color":{"color":"rgba(34, 56, 101, 0.04)"}},"boxed_content_spacing":{"desktop":{"top":"40px","bottom":"40px","left":"40px","right":"40px","linked":true},"tablet":{"top":"35px","bottom":"35px","left":"35px","right":"35px","linked":true},"mobile":{"top":"20px","bottom":"20px","left":"20px","right":"20px","linked":true}},"content_boxed_radius":{"top":"3px","bottom":"3px","left":"3px","right":"3px","linked":true},"d5be7966a9bab685db56943fae95ef5c":"","disable_featured_image":"no","disable_post_tags":"no","disable_share_box":"no","disable_author_box":"no","disable_posts_navigation":"no","disable_subscribe_form":"no","0c915377460052c99d305ecc2434c701":"","disable_related_posts":"no","disable_header":"no","disable_footer":"no","6565c52d64a117dbb619c59e385756bc":"","header_footer_scripts_panel":"","header_scripts":"","dc638a4542675eaa4d18722ad104a13f":"","header_after_body_scripts":"","c792f143e5b6f026451282aee7638573":"","footer_scripts":""},"_links":{"self":[{"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/posts\/15182","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/users\/10"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/comments?post=15182"}],"version-history":[{"count":0,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/posts\/15182\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/media\/15194"}],"wp:attachment":[{"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/media?parent=15182"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/categories?post=15182"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/tags?post=15182"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}