{"id":18347,"date":"2023-11-23T05:33:10","date_gmt":"2023-11-23T05:33:10","guid":{"rendered":"https:\/\/www.prepbytes.com\/blog\/?p=18347"},"modified":"2023-11-23T05:33:10","modified_gmt":"2023-11-23T05:33:10","slug":"gzip-command-linux","status":"publish","type":"post","link":"https:\/\/prepbytes.com\/blog\/gzip-command-linux\/","title":{"rendered":"gzip Command Linux"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700717563184-gzip%20Command%20Linux%20.jpg\" alt=\"\" \/><br \/>\nIn the realm of Linux file compression, the &#8216;gzip&#8217; command stands as a powerful tool that enables users to compress and decompress files effortlessly. Short for &quot;GNU zip,&quot; &#8216;gzip&#8217; is a widely-used utility designed to reduce file sizes, thereby conserving disk space and expediting file transfers. Understanding the functionality and various options of &#8216;gzip&#8217; empowers users to efficiently compress and decompress files from the command line.<\/p>\n<p>This comprehensive guide aims to explore the versatile capabilities of the &#8216;gzip&#8217; command, elucidating its usage, command syntax, and a range of practical examples. Whether you&#8217;re a beginner or an experienced Linux user, delving into &#8216;gzip&#8217; allows for proficient file compression and decompression, streamlining file management tasks.<\/p>\n<h2>What is gzip Command in Linux?<\/h2>\n<p>&#8216;gzip&#8217; is a command-line utility that compresses files using the DEFLATE compression algorithm. It replaces repeated strings within a file with references to a shared dictionary, effectively reducing the overall file size. The compressed files typically have a &#8216;.gz&#8217; extension and can be decompressed back to their original form.<\/p>\n<h3>Basic Usage of gzip command in Linux<\/h3>\n<p>Below are basic usage of gzip command in Linux:<br \/>\n<strong>1. Compressing a File:<\/strong><br \/>\nTo compress a file using &#8216;gzip&#8217;, simply provide the filename as an argument:<\/p>\n<pre><code>gzip filename<\/code><\/pre>\n<p>This command compresses the &#8216;filename&#8217; and generates a compressed file named &#8216;filename.gz&#8217; while retaining the original file.<\/p>\n<p><strong>2. Decompressing a &#8216;.gz&#8217; File:<\/strong><br \/>\nTo decompress a &#8216;.gz&#8217; file back to its original form, use the &#8216;-d&#8217; flag:<\/p>\n<pre><code>gzip -d filename.gz<\/code><\/pre>\n<p>This command decompresses the &#8216;filename.gz&#8217; file and restores it to its original state, removing the &#8216;.gz&#8217; extension.<\/p>\n<p><strong>3. Compress Multiple Files:<\/strong><br \/>\nTo compress multiple files simultaneously, you can specify multiple filenames as arguments:<\/p>\n<pre><code>gzip file1 file2 file3<\/code><\/pre>\n<p>This command compresses &#8216;file1&#8217;, &#8216;file2&#8217;, and &#8216;file3&#8217; individually, creating corresponding &#8216;.gz&#8217; compressed files for each.<\/p>\n<p><strong>4. Compressing a Directory Recursively:<\/strong><br \/>\nTo compress all files within a directory and its subdirectories, use the &#8216;-r&#8217; flag (recursive) with &#8216;gzip&#8217;:<\/p>\n<pre><code>gzip -r directory_name<\/code><\/pre>\n<p>This command recursively compresses all files within &#8216;directory_name&#8217; and its subdirectories, preserving the directory structure.<\/p>\n<p><strong>5. Piping Data into &#8216;gzip&#8217;:<\/strong><br \/>\nYou can use the &#8216;gzip&#8217; command in conjunction with other commands by piping data into &#8216;gzip&#8217; for compression:<\/p>\n<pre><code>cat filename | gzip &gt; compressed_file.gz<\/code><\/pre>\n<p>This command uses &#8216;cat&#8217; to read &#8216;filename&#8217; and pipes the data to &#8216;gzip&#8217; for compression. The compressed data is then redirected to &#8216;compressed_file.gz&#8217;.<\/p>\n<p><strong>6. Combining Compression with Tar:<\/strong><br \/>\nTo compress a directory into a single compressed file using &#8216;tar&#8217; and &#8216;gzip&#8217;, creating a &#8216;.tar.gz&#8217; or &#8216;.tgz&#8217; file:<\/p>\n<pre><code>tar czvf archive.tar.gz directory_name<\/code><\/pre>\n<p>This command uses &#8216;tar&#8217; to create a compressed archive (&#8216;archive.tar.gz&#8217;) of &#8216;directory_name&#8217;, combining &#8216;tar&#8217; for archiving and &#8216;gzip&#8217; for compression.<\/p>\n<p><strong>7. Limiting Compression Level:<\/strong><br \/>\nBy default, &#8216;gzip&#8217; uses the default compression level (usually 6). You can specify compression levels from 1 (fastest, less compression) to 9 (slowest, best compression) using the &#8216;-[1-9]&#8217; flag:<\/p>\n<pre><code>gzip -9 filename    # Highest compression level\ngzip -1 filename    # Lowest compression level (faster)<\/code><\/pre>\n<p>Using higher compression levels may result in smaller file sizes but could be slower in compression.<\/p>\n<p><strong>8. Displaying Compression Ratio:<\/strong><br \/>\nTo display the compression ratio after compressing a file, use the &#8216;-l&#8217; flag:<\/p>\n<pre><code>gzip -l filename.gz<\/code><\/pre>\n<p>This command shows detailed information about the compressed &#8216;filename.gz&#8217; file, including the original and compressed sizes and the compression ratio.<\/p>\n<p><strong>9. Retaining the Original File:<\/strong><br \/>\nUsing the &#8216;-k&#8217; flag with &#8216;gzip&#8217; keeps the original file after compression:<\/p>\n<pre><code>gzip -k filename<\/code><\/pre>\n<p>This command compresses &#8216;filename&#8217; and retains the original uncompressed file without overwriting it.<\/p>\n<p><strong>10. Verbose Mode for Compression:<\/strong><br \/>\nTo display verbose output while compressing a file, use the &#8216;-v&#8217; flag:<\/p>\n<pre><code>gzip -v filename<\/code><\/pre>\n<p>This command provides detailed information about the compression process, including the original and compressed file sizes.<\/p>\n<p><strong>Conclusion:<\/strong><br \/>\nThe &#8216;gzip&#8217; command serves as an invaluable asset for Linux users seeking efficient file compression and decompression capabilities. Its simplicity and effectiveness in reducing file sizes make it an essential tool for various file management tasks.<\/p>\n<p>By exploring the functionalities and examples provided in this guide, users can harness the potential of &#8216;gzip&#8217;, enhancing their proficiency in compressing and decompressing files within the Linux environment. Mastering &#8216;gzip&#8217; facilitates streamlined file storage, faster data transfers, and optimized disk space utilization.<\/p>\n<p>This article provides an overview of the &#8216;gzip&#8217; command in Linux, offering insights into its usage, command structure, and practical examples. Understanding &#8216;gzip&#8217; empowers users to manage files more effectively, enabling them to compress and decompress files effortlessly in the Linux terminal.<\/p>\n<h2>FAQ Related to gzip command in Linux:<\/h2>\n<p>Here are some FAQs related to gzip command in Linux.<\/p>\n<p><strong>1. What is the &#8216;gzip&#8217; command in Linux used for?<\/strong><br \/>\n&#8216;gzip&#8217; is a command-line utility used to compress and decompress files in the Linux environment. It reduces the size of files by replacing repetitive data with references to a dictionary of common strings.<\/p>\n<p><strong>2. How do I compress a file using &#8216;gzip&#8217;?<\/strong><br \/>\nTo compress a file using &#8216;gzip&#8217;, simply use the following command syntax:<\/p>\n<pre><code>gzip filename<\/code><\/pre>\n<p>This command compresses the specified file &#8216;filename&#8217; and adds a &#8216;.gz&#8217; extension to the compressed file.<\/p>\n<p><strong>3. Can &#8216;gzip&#8217; retain the original file when compressing?<\/strong><br \/>\nYes, by using the &#8216;-k&#8217; or &#8216;&#8211;keep&#8217; flag with &#8216;gzip&#8217;, the original file is retained after compression. For instance:<\/p>\n<pre><code>gzip -k filename<\/code><\/pre>\n<p><strong>4. How do I decompress a &#8216;.gz&#8217; file using &#8216;gzip&#8217;?<\/strong><br \/>\nTo decompress a &#8216;.gz&#8217; file using &#8216;gzip&#8217;, use the following command:<\/p>\n<pre><code>gzip -d filename.gz<\/code><\/pre>\n<p>This command decompresses the &#8216;filename.gz&#8217; file and restores it to its original form.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In the realm of Linux file compression, the &#8216;gzip&#8217; command stands as a powerful tool that enables users to compress and decompress files effortlessly. Short for &quot;GNU zip,&quot; &#8216;gzip&#8217; is a widely-used utility designed to reduce file sizes, thereby conserving disk space and expediting file transfers. Understanding the functionality and various options of &#8216;gzip&#8217; empowers [&hellip;]<\/p>\n","protected":false},"author":52,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[230],"tags":[],"class_list":["post-18347","post","type-post","status-publish","format-standard","hentry","category-linux"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>gzip Command Linux<\/title>\n<meta name=\"description\" content=\"gzip is a command-line utility that compresses files using the DEFLATE compression algorithm.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/prepbytes.com\/blog\/gzip-command-linux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"gzip Command Linux\" \/>\n<meta property=\"og:description\" content=\"gzip is a command-line utility that compresses files using the DEFLATE compression algorithm.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prepbytes.com\/blog\/gzip-command-linux\/\" \/>\n<meta property=\"og:site_name\" content=\"PrepBytes Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/prepbytes0211\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-11-23T05:33:10+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700717563184-gzip%20Command%20Linux%20.jpg\" \/>\n<meta name=\"author\" content=\"Prepbytes\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Prepbytes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/prepbytes.com\/blog\/gzip-command-linux\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/gzip-command-linux\/\"},\"author\":{\"name\":\"Prepbytes\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\"},\"headline\":\"gzip Command Linux\",\"datePublished\":\"2023-11-23T05:33:10+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/gzip-command-linux\/\"},\"wordCount\":843,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/gzip-command-linux\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700717563184-gzip%20Command%20Linux%20.jpg\",\"articleSection\":[\"Linux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/prepbytes.com\/blog\/gzip-command-linux\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/prepbytes.com\/blog\/gzip-command-linux\/\",\"url\":\"https:\/\/prepbytes.com\/blog\/gzip-command-linux\/\",\"name\":\"gzip Command Linux\",\"isPartOf\":{\"@id\":\"http:\/\/43.205.93.38\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/gzip-command-linux\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/gzip-command-linux\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700717563184-gzip%20Command%20Linux%20.jpg\",\"datePublished\":\"2023-11-23T05:33:10+00:00\",\"description\":\"gzip is a command-line utility that compresses files using the DEFLATE compression algorithm.\",\"breadcrumb\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/gzip-command-linux\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prepbytes.com\/blog\/gzip-command-linux\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prepbytes.com\/blog\/gzip-command-linux\/#primaryimage\",\"url\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700717563184-gzip%20Command%20Linux%20.jpg\",\"contentUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700717563184-gzip%20Command%20Linux%20.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prepbytes.com\/blog\/gzip-command-linux\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/43.205.93.38\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Linux\",\"item\":\"https:\/\/prepbytes.com\/blog\/category\/linux\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"gzip Command Linux\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/43.205.93.38\/#website\",\"url\":\"http:\/\/43.205.93.38\/\",\"name\":\"PrepBytes Blog\",\"description\":\"ONE-STOP RESOURCE FOR EVERYTHING RELATED TO CODING\",\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/43.205.93.38\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/43.205.93.38\/#organization\",\"name\":\"Prepbytes\",\"url\":\"http:\/\/43.205.93.38\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp\",\"contentUrl\":\"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp\",\"width\":160,\"height\":160,\"caption\":\"Prepbytes\"},\"image\":{\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/prepbytes0211\/\",\"https:\/\/www.instagram.com\/prepbytes\/\",\"https:\/\/www.linkedin.com\/company\/prepbytes\/\",\"https:\/\/www.youtube.com\/channel\/UC0xGnHDrjUM1pDEK2Ka5imA\"]},{\"@type\":\"Person\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\",\"name\":\"Prepbytes\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g\",\"caption\":\"Prepbytes\"},\"url\":\"https:\/\/prepbytes.com\/blog\/author\/gourav-jaincollegedekho-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"gzip Command Linux","description":"gzip is a command-line utility that compresses files using the DEFLATE compression algorithm.","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:\/\/prepbytes.com\/blog\/gzip-command-linux\/","og_locale":"en_US","og_type":"article","og_title":"gzip Command Linux","og_description":"gzip is a command-line utility that compresses files using the DEFLATE compression algorithm.","og_url":"https:\/\/prepbytes.com\/blog\/gzip-command-linux\/","og_site_name":"PrepBytes Blog","article_publisher":"https:\/\/www.facebook.com\/prepbytes0211\/","article_published_time":"2023-11-23T05:33:10+00:00","og_image":[{"url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700717563184-gzip%20Command%20Linux%20.jpg","type":"","width":"","height":""}],"author":"Prepbytes","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Prepbytes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/prepbytes.com\/blog\/gzip-command-linux\/#article","isPartOf":{"@id":"https:\/\/prepbytes.com\/blog\/gzip-command-linux\/"},"author":{"name":"Prepbytes","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e"},"headline":"gzip Command Linux","datePublished":"2023-11-23T05:33:10+00:00","mainEntityOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/gzip-command-linux\/"},"wordCount":843,"commentCount":0,"publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/gzip-command-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700717563184-gzip%20Command%20Linux%20.jpg","articleSection":["Linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/prepbytes.com\/blog\/gzip-command-linux\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/prepbytes.com\/blog\/gzip-command-linux\/","url":"https:\/\/prepbytes.com\/blog\/gzip-command-linux\/","name":"gzip Command Linux","isPartOf":{"@id":"http:\/\/43.205.93.38\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/gzip-command-linux\/#primaryimage"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/gzip-command-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700717563184-gzip%20Command%20Linux%20.jpg","datePublished":"2023-11-23T05:33:10+00:00","description":"gzip is a command-line utility that compresses files using the DEFLATE compression algorithm.","breadcrumb":{"@id":"https:\/\/prepbytes.com\/blog\/gzip-command-linux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prepbytes.com\/blog\/gzip-command-linux\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prepbytes.com\/blog\/gzip-command-linux\/#primaryimage","url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700717563184-gzip%20Command%20Linux%20.jpg","contentUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700717563184-gzip%20Command%20Linux%20.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/prepbytes.com\/blog\/gzip-command-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/43.205.93.38\/"},{"@type":"ListItem","position":2,"name":"Linux","item":"https:\/\/prepbytes.com\/blog\/category\/linux\/"},{"@type":"ListItem","position":3,"name":"gzip Command Linux"}]},{"@type":"WebSite","@id":"http:\/\/43.205.93.38\/#website","url":"http:\/\/43.205.93.38\/","name":"PrepBytes Blog","description":"ONE-STOP RESOURCE FOR EVERYTHING RELATED TO CODING","publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/43.205.93.38\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/43.205.93.38\/#organization","name":"Prepbytes","url":"http:\/\/43.205.93.38\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/","url":"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp","contentUrl":"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp","width":160,"height":160,"caption":"Prepbytes"},"image":{"@id":"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/prepbytes0211\/","https:\/\/www.instagram.com\/prepbytes\/","https:\/\/www.linkedin.com\/company\/prepbytes\/","https:\/\/www.youtube.com\/channel\/UC0xGnHDrjUM1pDEK2Ka5imA"]},{"@type":"Person","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e","name":"Prepbytes","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g","caption":"Prepbytes"},"url":"https:\/\/prepbytes.com\/blog\/author\/gourav-jaincollegedekho-com\/"}]}},"_links":{"self":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/18347","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/users\/52"}],"replies":[{"embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/comments?post=18347"}],"version-history":[{"count":1,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/18347\/revisions"}],"predecessor-version":[{"id":18348,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/18347\/revisions\/18348"}],"wp:attachment":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/media?parent=18347"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/categories?post=18347"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/tags?post=18347"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}