{"id":43,"date":"2009-01-10T08:10:44","date_gmt":"2009-01-10T08:10:44","guid":{"rendered":"http:\/\/kedar.nitty-witty.com\/?p=43"},"modified":"2015-03-12T06:02:05","modified_gmt":"2015-03-12T06:02:05","slug":"linux-shell-commands-quick-how-to","status":"publish","type":"post","link":"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-commands-quick-how-to","title":{"rendered":"Linux Shell Commands &#8211; quick how-tos"},"content":{"rendered":"<p>Following are linux commands, tricks for doing regular tasks.<\/p>\n<h1>Rename files: replace space by _ in linux:<\/h1>\n<blockquote style=\"background-color:beige\">\n<pre style=white-space:pre-wrap>\r\nfor files in *; do mv \"$files\" `echo $files | tr ' ' '_'`; done\r\n<\/pre>\n<\/blockquote>\n<h1>Change case of multiple file names:<\/h1>\n<blockquote style=\"background-color:beige\">\n<pre style=white-space:pre-wrap>for files in *; do mv $files `echo $files | tr '[:upper:]' '[:lower:]'`; done<\/pre>\n<\/blockquote>\n<h1>Find files having large size:<\/h1>\n<blockquote style=\"background-color:beige\">\n<pre style=white-space:pre-wrap>ls -hlRtr | awk '{print $5 \" \" $6 \"-\" $7 \" \"$9}' | grep '[0-9]G ' <\/pre>\n<\/blockquote>\n<p>&#8211; Variants: grep &#8216;[0-9][0-9][0-9]M&#8217;  will give you files having sizes xxxMBs.<\/p>\n<h1>Find and replace text from multiple files :<\/h1>\n<blockquote style=\"background-color:beige\">\n<pre style=white-space:pre-wrap>find .\/ -type f | xargs perl -pi -w -e 's\/SEARCH-TERM\/REPLACE-TERM\/g;'<\/pre>\n<\/blockquote>\n<h1>Find text in file:<\/h1>\n<blockquote style=\"background-color:beige\">\n<pre style=white-space:pre-wrap>find . -name \"*.php\" | xargs grep \" order by l.ID \"<\/pre>\n<\/blockquote>\n<blockquote style=\"background-color:beige\">\n<pre style=white-space:pre-wrap>find . -name \"*.pl\" | xargs grep \"virtualTourUrl\"<\/pre>\n<\/blockquote>\n<blockquote style=\"background-color:beige\">\n<pre style=white-space:pre-wrap>grep *.* \"Pattern\"<\/pre>\n<\/blockquote>\n<h1>Find and Delete file within last one hour:<\/h1>\n<blockquote style=\"background-color:beige\">\n<pre style=white-space:pre-wrap>find \/some\/dir -type f -mmin +60 | xargs rm -f<\/pre>\n<\/blockquote>\n<blockquote style=\"background-color:beige\">\n<pre style=white-space:pre-wrap>find . -cmin +60 -exec rm -f {} \\;<\/pre>\n<\/blockquote>\n<h1>Find files last modified \/ accessed &#8211; copy to other directory:<\/h1>\n<blockquote style=\"background-color:beige\">\n<pre style=white-space:pre-wrap>find . -mtime +1 -exec cp {} TARGET_FOLDER \\;<\/pre>\n<\/blockquote>\n<p>&#8211; atime..last access<br \/>\n&#8211; mtime..last modify<br \/>\n&#8211; ctime..last status change<\/p>\n<h1>Replace content of a file:<\/h1>\n<blockquote style=\"background-color:beige\">\n<pre style=white-space:pre-wrap>perl -pi -e \"s\/kedar\/radek\/g\" a.txt<\/pre>\n<\/blockquote>\n<blockquote style=\"background-color:beige\">\n<pre style=white-space:pre-wrap>perl -pi -e \"s\/OLDTEXT=OLDVALUE\/NewText=NewValue\/g\" *.*\r\n<\/pre>\n<\/blockquote>\n<h1>Find a.txt and Replace content by string comparison and save in to other file:<\/h1>\n<blockquote style=\"background-color:beige\">\n<pre style=white-space:pre-wrap>find .\/ -name \"a.txt\" -exec sed 's\/radek\/kedar\/g' {} \\; &gt; b.txt\r\n<\/pre>\n<\/blockquote>\n<h1>Find files modified in last n days:<\/h1>\n<blockquote style=\"background-color:beige\">\n<pre style=white-space:pre-wrap>find *.sql -mtime +n -exec ls -l --sort=time {} \\;\r\n<\/pre>\n<\/blockquote>\n<h1>Create and Extract a Tar file:<\/h1>\n<blockquote style=\"background-color:beige\">\n<pre style=white-space:pre-wrap>tar -cvf \/path\/to\/file.tar \/path\/to\/source\/ archived<\/pre>\n<\/blockquote>\n<blockquote style=\"background-color:beige\">\n<pre style=white-space:pre-wrap>tar -xvf \/path\/to\/file.tar\r\n<\/pre>\n<\/blockquote>\n<h1>A quick sftp \u2013 secure file transfer program to transfer files between linux\/unix machines:<\/h1>\n<blockquote style=\"background-color:beige\">\n<pre style=white-space:pre-wrap>sftp usename@hostname\/ipaddress\r\npassword: ****\r\nsftp&gt; ls #executed on remote machine\r\nsftp&gt; lls #executed on local machine\r\nsftp&gt; get *.* #download all files from remote machine to local machine\r\nsftp&gt; put *.* #upload files to remote machine\r\n\r\n- Create directory in sftp: mkdir [For local: lmkdir]\r\n- Change directory in sftp: cd [For local: lcd]\r\n- get \/ mget : download files to local linux machine\r\n- put \/ mput : upload files to remote linux machie\r\n<\/pre>\n<\/blockquote>\n","protected":false},"excerpt":{"rendered":"Following are linux commands, tricks for doing regular tasks. Rename files: replace space by _ in linux: for files in *; do mv &#8220;$files&#8221; `echo $files | tr &#8216; &#8216;&hellip;\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[6],"tags":[25,59,172,426],"class_list":["post-43","post","type-post","status-publish","format-standard","category-technical","tag-command","tag-linux","tag-linux-commands","tag-technical"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"List of Linux Commands on shell prompt used in daily activities\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Kedar\"\/>\n\t<meta name=\"google-site-verification\" content=\"_Bu1h5r0PxIC0D2jBVdmYN45RTeG9ogcX85XLkbG1qA\" \/>\n\t<meta name=\"msvalidate.01\" content=\"116B62074CBCA1BA99B8CCE09CCF2FB8\" \/>\n\t<meta name=\"keywords\" content=\"linux command,bash commands,commands,linux,command,linux commands,technical\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-commands-quick-how-to\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Change Is Inevitable | Kedar Vaijanapurkar&#039;s Blog for MySQL, technology and various subjects\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Linux Shell Commands - quick how-tos | Change Is Inevitable\" \/>\n\t\t<meta property=\"og:description\" content=\"List of Linux Commands on shell prompt used in daily activities\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-commands-quick-how-to\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2009-01-10T08:10:44+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2015-03-12T06:02:05+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Linux Shell Commands - quick how-tos | Change Is Inevitable\" \/>\n\t\t<meta name=\"twitter:description\" content=\"List of Linux Commands on shell prompt used in daily activities\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/linux-shell-commands-quick-how-to#article\",\"name\":\"Linux Shell Commands - quick how-tos | Change Is Inevitable\",\"headline\":\"Linux Shell Commands &#8211; quick how-tos\",\"author\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/author\\\/admin#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/linux-shell-commands-quick-how-to#articleImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Kedar\"},\"datePublished\":\"2009-01-10T08:10:44+00:00\",\"dateModified\":\"2015-03-12T06:02:05+00:00\",\"inLanguage\":\"en-US\",\"commentCount\":2,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/linux-shell-commands-quick-how-to#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/linux-shell-commands-quick-how-to#webpage\"},\"articleSection\":\"Technical, command, linux, linux commands, Technical\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/linux-shell-commands-quick-how-to#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/technical#listItem\",\"name\":\"Technical\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/technical#listItem\",\"position\":2,\"name\":\"Technical\",\"item\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/technical\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/linux-shell-commands-quick-how-to#listItem\",\"name\":\"Linux Shell Commands &#8211; quick how-tos\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/linux-shell-commands-quick-how-to#listItem\",\"position\":3,\"name\":\"Linux Shell Commands &#8211; quick how-tos\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/technical#listItem\",\"name\":\"Technical\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/#person\",\"name\":\"Kedar\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/linux-shell-commands-quick-how-to#personImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Kedar\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/author\\\/admin#author\",\"url\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/author\\\/admin\",\"name\":\"Kedar\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/linux-shell-commands-quick-how-to#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Kedar\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/linux-shell-commands-quick-how-to#webpage\",\"url\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/linux-shell-commands-quick-how-to\",\"name\":\"Linux Shell Commands - quick how-tos | Change Is Inevitable\",\"description\":\"List of Linux Commands on shell prompt used in daily activities\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/linux-shell-commands-quick-how-to#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/author\\\/admin#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/author\\\/admin#author\"},\"datePublished\":\"2009-01-10T08:10:44+00:00\",\"dateModified\":\"2015-03-12T06:02:05+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/\",\"name\":\"..::CHANGE is INEVITABLE::..\",\"description\":\"Kedar Vaijanapurkar's Blog for MySQL, technology and various subjects\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Linux Shell Commands - quick how-tos | Change Is Inevitable","description":"List of Linux Commands on shell prompt used in daily activities","canonical_url":"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-commands-quick-how-to","robots":"max-image-preview:large","keywords":"linux command,bash commands,commands,linux,command,linux commands,technical","webmasterTools":{"google-site-verification":"_Bu1h5r0PxIC0D2jBVdmYN45RTeG9ogcX85XLkbG1qA","msvalidate.01":"116B62074CBCA1BA99B8CCE09CCF2FB8","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-commands-quick-how-to#article","name":"Linux Shell Commands - quick how-tos | Change Is Inevitable","headline":"Linux Shell Commands &#8211; quick how-tos","author":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/author\/admin#author"},"publisher":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/#person"},"image":{"@type":"ImageObject","@id":"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-commands-quick-how-to#articleImage","url":"https:\/\/secure.gravatar.com\/avatar\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g","width":96,"height":96,"caption":"Kedar"},"datePublished":"2009-01-10T08:10:44+00:00","dateModified":"2015-03-12T06:02:05+00:00","inLanguage":"en-US","commentCount":2,"mainEntityOfPage":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-commands-quick-how-to#webpage"},"isPartOf":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-commands-quick-how-to#webpage"},"articleSection":"Technical, command, linux, linux commands, Technical"},{"@type":"BreadcrumbList","@id":"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-commands-quick-how-to#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/kedar.nitty-witty.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/category\/technical#listItem","name":"Technical"}},{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/category\/technical#listItem","position":2,"name":"Technical","item":"https:\/\/kedar.nitty-witty.com\/blog\/category\/technical","nextItem":{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-commands-quick-how-to#listItem","name":"Linux Shell Commands &#8211; quick how-tos"},"previousItem":{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-commands-quick-how-to#listItem","position":3,"name":"Linux Shell Commands &#8211; quick how-tos","previousItem":{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/category\/technical#listItem","name":"Technical"}}]},{"@type":"Person","@id":"https:\/\/kedar.nitty-witty.com\/blog\/#person","name":"Kedar","image":{"@type":"ImageObject","@id":"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-commands-quick-how-to#personImage","url":"https:\/\/secure.gravatar.com\/avatar\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g","width":96,"height":96,"caption":"Kedar"}},{"@type":"Person","@id":"https:\/\/kedar.nitty-witty.com\/blog\/author\/admin#author","url":"https:\/\/kedar.nitty-witty.com\/blog\/author\/admin","name":"Kedar","image":{"@type":"ImageObject","@id":"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-commands-quick-how-to#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g","width":96,"height":96,"caption":"Kedar"}},{"@type":"WebPage","@id":"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-commands-quick-how-to#webpage","url":"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-commands-quick-how-to","name":"Linux Shell Commands - quick how-tos | Change Is Inevitable","description":"List of Linux Commands on shell prompt used in daily activities","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-commands-quick-how-to#breadcrumblist"},"author":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/author\/admin#author"},"creator":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/author\/admin#author"},"datePublished":"2009-01-10T08:10:44+00:00","dateModified":"2015-03-12T06:02:05+00:00"},{"@type":"WebSite","@id":"https:\/\/kedar.nitty-witty.com\/blog\/#website","url":"https:\/\/kedar.nitty-witty.com\/blog\/","name":"..::CHANGE is INEVITABLE::..","description":"Kedar Vaijanapurkar's Blog for MySQL, technology and various subjects","inLanguage":"en-US","publisher":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/#person"}}]},"og:locale":"en_US","og:site_name":"Change Is Inevitable | Kedar Vaijanapurkar's Blog for MySQL, technology and various subjects","og:type":"article","og:title":"Linux Shell Commands - quick how-tos | Change Is Inevitable","og:description":"List of Linux Commands on shell prompt used in daily activities","og:url":"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-commands-quick-how-to","article:published_time":"2009-01-10T08:10:44+00:00","article:modified_time":"2015-03-12T06:02:05+00:00","twitter:card":"summary","twitter:title":"Linux Shell Commands - quick how-tos | Change Is Inevitable","twitter:description":"List of Linux Commands on shell prompt used in daily activities"},"aioseo_meta_data":{"post_id":"43","title":"Linux Shell Commands - quick how-tos | #site_title","description":"List of Linux Commands on shell prompt used in daily activities","keywords":[{"label":"linux command","value":"linux command"},{"label":"bash commands","value":"bash commands"},{"label":"commands","value":"commands"},{"label":"linux","value":"linux"}],"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"location":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2021-03-24 17:41:56","updated":"2025-08-16 18:59:42","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/kedar.nitty-witty.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/kedar.nitty-witty.com\/blog\/category\/technical\" title=\"Technical\">Technical<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tLinux Shell Commands \u2013 quick how-tos\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/kedar.nitty-witty.com\/blog"},{"label":"Technical","link":"https:\/\/kedar.nitty-witty.com\/blog\/category\/technical"},{"label":"Linux Shell Commands &#8211; quick how-tos","link":"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-commands-quick-how-to"}],"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/posts\/43","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/comments?post=43"}],"version-history":[{"count":3,"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/posts\/43\/revisions"}],"predecessor-version":[{"id":2139,"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/posts\/43\/revisions\/2139"}],"wp:attachment":[{"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/media?parent=43"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/categories?post=43"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/tags?post=43"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}