{"id":78673,"date":"2026-05-24T19:43:30","date_gmt":"2026-05-24T19:43:30","guid":{"rendered":"http:\/\/bangla.sitestree.com\/?p=78673"},"modified":"2026-05-24T19:43:31","modified_gmt":"2026-05-24T19:43:31","slug":"explain-get-children-and-rename-item","status":"publish","type":"post","link":"http:\/\/bangla.sitestree.com\/?p=78673","title":{"rendered":"Explain: Get-Children and Rename-Item"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Below, <strong>parent command<\/strong> means the main cmdlet being used: <code>Get-ChildItem<\/code> or <code>Rename-Item<\/code>.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">1. <code>Get-ChildItem -Path C:\\Users\\sayed\\* -Include *.txt<\/code><\/h1>\n\n\n\n<h2 class=\"wp-block-heading\">Parent command: <code>Get-ChildItem<\/code><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\"><code>Get-ChildItem<\/code> lists files and folders in a location. It is similar to:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>dir\nls\ngci\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Your rename-files lab explains that <code>Get-ChildItem<\/code> returns items from one or more locations and can be combined with filtering parameters such as <code>-Include<\/code>, <code>-Exclude<\/code>, <code>-Recurse<\/code>, and <code>-Depth<\/code>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Parameters<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>-Path C:\\Users\\sayed\\*\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Means:<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Look inside <code>C:\\Users\\sayed\\<\/code>.<\/p>\n<\/blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">The <code>*<\/code> wildcard means:<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Match all items inside that folder.<\/p>\n<\/blockquote>\n\n\n\n<pre class=\"wp-block-code\"><code>-Include *.txt\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Means:<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Include only files\/items matching <code>*.txt<\/code>.<\/p>\n<\/blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">So this command means:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Show only .txt files under C:\\Users\\sayed\\\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Important: <code>-Include<\/code> usually works best when the path includes a wildcard <code>*<\/code>, or when used with <code>-Recurse<\/code>.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">2. <code>Get-ChildItem -Path C:\\Users\\sayed\\* -Exclude A*<\/code><\/h1>\n\n\n\n<h2 class=\"wp-block-heading\">Parent command: <code>Get-ChildItem<\/code><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Again, this lists files and folders.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Parameters<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>-Path C:\\Users\\sayed\\*\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Looks at all items inside:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>C:\\Users\\sayed\\\n<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>-Exclude A*\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Means:<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Exclude items whose names start with <code>A<\/code>.<\/p>\n<\/blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">So this command means:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Show all items under C:\\Users\\sayed\\, except items starting with A.\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Example excluded names:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Assignment.txt\nArchive\nApple.docx\n<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">3. <code>Rename-Item -Path \"C:\\Test\\test_file.txt\" -NewName \"mytest_file.txt\"<\/code><\/h1>\n\n\n\n<h2 class=\"wp-block-heading\">Parent command: <code>Rename-Item<\/code><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\"><code>Rename-Item<\/code> changes the name of a file, folder, or registry key without changing its contents.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Parameters<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>-Path \"C:\\Test\\test_file.txt\"\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Means:<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">This is the item to rename.<\/p>\n<\/blockquote>\n\n\n\n<pre class=\"wp-block-code\"><code>-NewName \"mytest_file.txt\"\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Means:<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Rename it to this new name.<\/p>\n<\/blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">So this command means:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Rename C:\\Test\\test_file.txt to mytest_file.txt.\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">After the command, the file becomes:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>C:\\Test\\mytest_file.txt\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Important: <code>-NewName<\/code> should be the new name only, not usually a full new path.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">4. <code>Get-ChildItem *.txt | Rename-Item -NewName { $_.Name -replace \".txt\", \".log\" } -WhatIf<\/code><\/h1>\n\n\n\n<h2 class=\"wp-block-heading\">Parent commands<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">This command uses two parent commands:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Get-ChildItem\nRename-Item\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">It uses the pipeline to send files from <code>Get-ChildItem<\/code> into <code>Rename-Item<\/code>.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Part 1<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>Get-ChildItem *.txt\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Means:<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Find all <code>.txt<\/code> files in the current folder.<\/p>\n<\/blockquote>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Part 2<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>|\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">The pipeline sends each <code>.txt<\/code> file object to <code>Rename-Item<\/code>.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Part 3<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>Rename-Item -NewName { $_.Name -replace \".txt\", \".log\" }\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">This renames each file.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$_\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Means:<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">The current file object coming through the pipeline.<\/p>\n<\/blockquote>\n\n\n\n<pre class=\"wp-block-code\"><code>$_.Name\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Means:<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">The current file\u2019s name.<\/p>\n<\/blockquote>\n\n\n\n<pre class=\"wp-block-code\"><code>-replace \".txt\", \".log\"\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Means:<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Replace <code>.txt<\/code> with <code>.log<\/code>.<\/p>\n<\/blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">So:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>report.txt\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">would become:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>report.log\n<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Part 4<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>-WhatIf\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Means:<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Show what would happen, but do not actually rename the files.<\/p>\n<\/blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">This is a safety option.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">So the full command means:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Find all .txt files in the current folder and show how they would be renamed to .log files, but do not actually rename them.\n<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">Compare and Contrast<\/h1>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Command<\/th><th>Main Purpose<\/th><th>Changes Anything?<\/th><th>Scope<\/th><\/tr><\/thead><tbody><tr><td><code>Get-ChildItem -Include<\/code><\/td><td>Shows only matching items<\/td><td>No<\/td><td>File\/folder listing<\/td><\/tr><tr><td><code>Get-ChildItem -Exclude<\/code><\/td><td>Hides matching items<\/td><td>No<\/td><td>File\/folder listing<\/td><\/tr><tr><td><code>Rename-Item -Path ... -NewName ...<\/code><\/td><td>Renames one specific item<\/td><td>Yes<\/td><td>One file\/folder<\/td><\/tr><tr><td><code>Get-ChildItem ... | Rename-Item ... -WhatIf<\/code><\/td><td>Simulates bulk rename<\/td><td>No, because of <code>-WhatIf<\/code><\/td><td>Multiple files<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">Key Difference: <code>-Include<\/code> vs <code>-Exclude<\/code><\/h1>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Parameter<\/th><th>Meaning<\/th><\/tr><\/thead><tbody><tr><td><code>-Include *.txt<\/code><\/td><td>Show only <code>.txt<\/code> files<\/td><\/tr><tr><td><code>-Exclude A*<\/code><\/td><td>Show everything except names starting with <code>A<\/code><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">Key Difference: Single Rename vs Bulk Rename<\/h1>\n\n\n\n<h2 class=\"wp-block-heading\">Single rename<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>Rename-Item -Path \"C:\\Test\\test_file.txt\" -NewName \"mytest_file.txt\"\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Used when you know the exact file.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Bulk rename<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>Get-ChildItem *.txt |\nRename-Item -NewName { $_.Name -replace \".txt\", \".log\" } -WhatIf\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Used when many files need the same pattern-based rename.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">Safe teaching version<\/h1>\n\n\n\n<p class=\"wp-block-paragraph\">Always test bulk renaming first with:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>-WhatIf\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Then, after confirming the output is correct, remove <code>-WhatIf<\/code>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Get-ChildItem *.txt |\nRename-Item -NewName { $_.Name -replace \".txt\", \".log\" }\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Student comment:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># This command finds all .txt files and uses Rename-Item to change\n# their extension to .log. The -WhatIf parameter previews the changes\n# without actually renaming the files.<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">REF: AI Tools\/ChatGPT<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Below, parent command means the main cmdlet being used: Get-ChildItem or Rename-Item. 1. Get-ChildItem -Path C:\\Users\\sayed\\* -Include *.txt Parent command: Get-ChildItem Get-ChildItem lists files and folders in a location. It is similar to: Your rename-files lab explains that Get-ChildItem returns items from one or more locations and can be combined with filtering parameters such as &hellip; <\/p>\n<p><a class=\"more-link btn\" href=\"http:\/\/bangla.sitestree.com\/?p=78673\">Continue reading<\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1981],"tags":[],"class_list":["post-78673","post","type-post","status-publish","format-standard","hentry","category-power-shell","item-wrap"],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[{"id":76384,"url":"http:\/\/bangla.sitestree.com\/?p=76384","url_meta":{"origin":78673,"position":0},"title":"Misc. on Power Shell Script","author":"sayedjustetc","date":"November 25, 2024","format":false,"excerpt":"Misc. on Power Shell Script How to read data from users? Read-Host How to write\/print output data\/text to the user: Write-Output How to Check if a file exists? Test-Path $filePath How to append data to a file? Add-Content -Path $filePath -Value \"x: $x, y: $y\" How to create a file?\u2026","rel":"","context":"In &quot;Operating Systems&quot;","block_context":{"text":"Operating Systems","link":"http:\/\/bangla.sitestree.com\/?cat=1968"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":69864,"url":"http:\/\/bangla.sitestree.com\/?p=69864","url_meta":{"origin":78673,"position":1},"title":"How to Build a Personal Web-site with ASP.Net (VS 2008, .Net 2.0\/3,5) #19","author":"Author-Check- Article-or-Video","date":"August 21, 2021","format":false,"excerpt":"Video Tutorial on this topic Web-site Code used in this tutorial Steps Open visual studio 2008 IDE File -> new project -> Visual Basic -> Web -> ASP .Net Web Application Rename default.aspx to template.aspx Insert a table from the tool box Create three rows for the table: top, body,\u2026","rel":"","context":"In &quot;FromSitesTree.com&quot;","block_context":{"text":"FromSitesTree.com","link":"http:\/\/bangla.sitestree.com\/?cat=1917"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":70271,"url":"http:\/\/bangla.sitestree.com\/?p=70271","url_meta":{"origin":78673,"position":2},"title":"How to Build a Personal Web-site with ASP.Net #.Net Web Applications","author":"Author-Check- Article-or-Video","date":"August 31, 2021","format":false,"excerpt":"Brought and updated from: http:\/\/salearningschool.com\/displayArticle.php?table=Articles&articleID=967&title=How%20to%20Build%20a%20Personal%20Web-site%20with%20ASP.Net%20(VS%202008,%20.Net%202.0\/3.5) This actually is an old way of doing. Video Tutorial on this topic [youtube https:\/\/www.youtube.com\/watch?v=PmWqWvaelyg] Web-site Code used in this tutorial Steps Open visual studio (2008) IDE File -> new project -> Visual Basic -> Web -> ASP .Net Web Application Rename default.aspx to template.aspx\u2026","rel":"","context":"In &quot;FromSitesTree.com&quot;","block_context":{"text":"FromSitesTree.com","link":"http:\/\/bangla.sitestree.com\/?cat=1917"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":16449,"url":"http:\/\/bangla.sitestree.com\/?p=16449","url_meta":{"origin":78673,"position":3},"title":"Magento 2 : installation\/configuration\/operation issues and Solutions","author":"Sayed","date":"December 2, 2019","format":false,"excerpt":"\"The Component Dependency Check status never changes. In some cases, the status of the Component Dependency Check doesn\u2019t change, even after you try to correct issues. In that case, you can either delete or rename files named <magento_root>\/var\/.update_cronjob_status and <magento_root>\/var\/.setup_cronjob_status and try running the Component Manager again.\" https:\/\/devdocs.magento.com\/guides\/v2.3\/comp-mgr\/trouble\/cman\/component-depend.html","rel":"","context":"In &quot;Magento 2&quot;","block_context":{"text":"Magento 2","link":"http:\/\/bangla.sitestree.com\/?cat=1907"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":7898,"url":"http:\/\/bangla.sitestree.com\/?p=7898","url_meta":{"origin":78673,"position":4},"title":"\u0986\u09aa\u09a8\u09be\u09b0 \u09ab\u09cb\u09b2\u09cd\u09a1\u09be\u09b0\u0995\u09c7 Rename \u0995\u09b0\u09c1\u09a8 \u098f\u0995\u099f\u09c1 \u09ad\u09bf\u09a8\u09cd\u09a8\u09ad\u09be\u09ac\u09c7!! Rename Your Folder in a Different Way","author":"Author-Check- Article-or-Video","date":"March 29, 2015","format":false,"excerpt":"\u09ab\u09cb\u09b2\u09cd\u09a1\u09be\u09b0 Rename \u0995\u09b0\u09be\u09b0 \u09b8\u09ae\u09df \u09b6\u09c1\u09a7\u09c1 Alt \u099a\u09c7\u09aa\u09c7 \u09a7\u09b0\u09c7 0160 \u09a8\u09be\u09ae\u09cd\u09ac\u09be\u09b0\u0997\u09c1\u09b2\u09cb \u099a\u09be\u09aa\u09c1\u09a8\u0964 \u09a4\u09be\u09b0\u09aa\u09b0 Enter \u099a\u09c7\u09aa\u09c7 \u0985\u09a5\u09ac\u09be \u09ac\u09be\u09b9\u09bf\u09b0\u09c7 \u0995\u09cb\u09a5\u09be\u0993 Click \u0995\u09b0\u09c7 confirm \u0995\u09b0\u09c1\u09a8 \u0986\u09b0 \u09ae\u099c\u09be \u09a6\u09c7\u0996\u09c1\u09a8\u0964 \u09ab\u09cb\u09b2\u09cd\u09a1\u09be\u09b0\u09c7\u09b0 \u09a8\u09be\u09ae\u099f\u09bf Blank \u09a6\u09c7\u0996\u09be\u09ac\u09c7\u0964 \u09a0\u09bf\u0995 \u098f\u0995\u09bf \u09ad\u09be\u09ac\u09c7 \u0986\u09aa\u09a8\u09bf 0169 \u09ac\u09cd\u09af\u09be\u09ac\u09b9\u09be\u09b0 \u0995\u09b0\u09c7 \u00a9 \u09ae\u09be\u09a8\u09c7 \u0995\u09aa\u09bf\u09b0\u09be\u0987\u099f \u099a\u09bf\u09b9\u09cd\u09a8 \u09ac\u09cd\u09af\u09be\u09ac\u09b9\u09be\u09b0 \u0995\u09b0\u09a4\u09c7 \u09aa\u09be\u09b0\u09ac\u09c7\u09a8 \u098f\u09ad\u09be\u09ac\u09c7 \u0986\u09aa\u09a8\u09bf \u09a8\u09bf\u099a\u09c7 \u09a6\u09c7\u09df\u09be \u09a8\u09be\u09ae\u09cd\u09ac\u09be\u09b0 \u09ac\u09cd\u09af\u09be\u09ac\u09b9\u09be\u09b0 \u0995\u09b0\u09c7 \u0985\u09a8\u09c7\u0995\u2026","rel":"","context":"In &quot;\u09b8\u09be\u09a7\u09be\u09b0\u09a3 \u0995\u09ae\u09cd\u09aa\u09bf\u0989\u099f\u09bf\u0982&quot;","block_context":{"text":"\u09b8\u09be\u09a7\u09be\u09b0\u09a3 \u0995\u09ae\u09cd\u09aa\u09bf\u0989\u099f\u09bf\u0982","link":"http:\/\/bangla.sitestree.com\/?cat=254"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":14040,"url":"http:\/\/bangla.sitestree.com\/?p=14040","url_meta":{"origin":78673,"position":5},"title":"AutoFS and Mounting in Linux\/Redhat\/CentOS","author":"Sayed","date":"December 26, 2017","format":false,"excerpt":"AutoFS and Mounting in Linux\/Redhat\/CentOS echo \"AutoFS - Automatic FS system Mounting - Dec 26th, 2017 by Sayed\" check if Autofs installed or not yum list installed | grep autofs I just installed; hence it is there you can install with yum -y install autofs 944 yum -y install autofs\u2026","rel":"","context":"In &quot;\u09b2\u09bf\u09a8\u09be\u0995\u09cd\u09b8 \u098f\u09ac\u0982 \u0989\u09a8\u09bf\u0995\u09cd\u09b8 \u0964 Linux and Unix&quot;","block_context":{"text":"\u09b2\u09bf\u09a8\u09be\u0995\u09cd\u09b8 \u098f\u09ac\u0982 \u0989\u09a8\u09bf\u0995\u09cd\u09b8 \u0964 Linux and Unix","link":"http:\/\/bangla.sitestree.com\/?cat=1231"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"_links":{"self":[{"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=\/wp\/v2\/posts\/78673","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=78673"}],"version-history":[{"count":1,"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=\/wp\/v2\/posts\/78673\/revisions"}],"predecessor-version":[{"id":78674,"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=\/wp\/v2\/posts\/78673\/revisions\/78674"}],"wp:attachment":[{"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=78673"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=78673"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=78673"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}