{"id":2423,"date":"2025-02-17T14:32:19","date_gmt":"2025-02-17T14:32:19","guid":{"rendered":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/?p=2423"},"modified":"2025-03-26T04:52:02","modified_gmt":"2025-03-26T04:52:02","slug":"ls-command-in-linux","status":"publish","type":"post","link":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/430\/ls-command-in-linux.html","title":{"rendered":"Know About the ls Command in Linux With Examples"},"content":{"rendered":"\n<p>Ever wondered how to quickly check what files and folders are inside a directory in Linux?<\/p>\n\n\n\n<p>That&#8217;s where the <strong>ls<\/strong> command comes in!<\/p>\n\n\n\n<p>It&#8217;s one of the most fundamental and frequently used commands in Linux, making file management easy. Whether you are a beginner or an experienced user, knowing how to use <strong>ls<\/strong> efficiently can save you time and effort.<\/p>\n\n\n\n<p>This guide will break down the <strong>ls<\/strong> command with simple examples and detailed explanations to help you master it.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What is the ls Command?<\/strong><\/h2>\n\n\n\n<p>The <strong>ls<\/strong> command stands for <strong>\u2018list\u2019<\/strong> and is used to display the contents of a directory. By default, running <strong>ls<\/strong> without options will list the files and directories in the current working directory.<\/p>\n\n\n\n<p><strong>Syntax:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>ls [options] [directory]<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>options<\/strong> modify the behaviour of the command.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>directory<\/strong> specifies the folder whose contents you want to list. If omitted, ls lists the contents of the current directory.<\/li>\n<\/ul>\n\n\n\n<p><hr><p><strong>Also Read: <\/strong><a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/428\/create-zip-file-in-linux.html\"><strong>Create Zip File With Command in Linux With Examples<\/strong><\/a><\/p><hr><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Top Basic ls Command Examples<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong><strong>Example <\/strong>1: Listing Files and Directories<\/strong><\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>ls<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>\u2794 This command lists all files and directories in the current directory.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>Example 2: Listing Files in a Specific Directory<\/strong><\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>ls \/home\/user\/Documents<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>\u2794 This command lists all files in the Documents directory inside the user folder.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>Example 3: Listing Files with Detailed Information (-l)<\/strong><\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>ls -l<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>\u2794 The <strong>-l<\/strong> option displays detailed information, including:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>File Permissions:<\/strong> Indicates read <strong>(r)<\/strong>, write <strong>(w)<\/strong>, and execute <strong>(x)<\/strong> permissions for the owner, group, and others.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Number of Links:<\/strong> Shows the number of hard links.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Owner and Group:<\/strong> Displays the user and group associated with the file.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>File Size:<\/strong> Shows the file size in bytes.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Modification Date:<\/strong> Displays the last modification time.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Filename:<\/strong> The name of the file or directory.<\/li>\n<\/ul>\n\n\n\n<p><strong>Sample Output:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>drwxr-xr-x\u00a0 2 user user 4096 Sep 10 10:30 Documents<\/strong><br><strong>-rw-r&#8211;r&#8211;\u00a0 1 user user 1024 Sep 10 10:00 file.txt<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Explanation:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>d<\/strong> at the beginning indicates a directory.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>rwxr-xr-x<\/strong> represents permissions.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>user user<\/strong> shows the owner and group.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>4096<\/strong> is the file size (in bytes).<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Sep 10 10:30<\/strong> is the last modification date.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Documents<\/strong> is the file\/directory name.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>Example 4: Listing Hidden Files (-a)<\/strong><\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>ls -a<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>\u2794 This command lists all files, including hidden files (files that start with a dot .).<\/p>\n\n\n\n<p><strong>Sample Output:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>.\u00a0 ..\u00a0 .bashrc\u00a0 .profile\u00a0 Documents\u00a0 file.txt<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>.<\/strong> represents the current directory.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>..<\/strong> represents the parent directory.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>.bashrc, .profile<\/strong> are hidden files.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>Example 5: Listing Files in Human-Readable Format (-lh)<\/strong><\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>ls -lh<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>\u2794 The <strong>-h<\/strong> option makes file sizes more readable by displaying them in KB, MB, or GB instead of bytes.<\/p>\n\n\n\n<p><strong>Sample Output:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>drwxr-xr-x\u00a0 2 user user 4.0K Sep 10 10:30 Documents<\/strong><br><strong>-rw-r&#8211;r&#8211;\u00a0 1 user user 1.0K Sep 10 10:00 file.txt<\/strong><br><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><hr><p><strong>Also Read: <\/strong><a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/427\/echo-command-in-linux.html\"><strong>A Guide to Echo Command in Linux With Examples<\/strong><\/a><\/p><hr><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>Example 6: Sorting Files by Modification Time (-lt)<\/strong><\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>ls -lt<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>\u2794 It will list files sorted by modification time, with the most recently modified files appearing first.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>Example 7: Listing Files in Reverse Order (-r)<\/strong><\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>ls -lr<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>\u2794 This will list files in reverse order.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>Example 8: Displaying File Type Indicators (-F)<\/strong><\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>ls -F<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>\u2794 <strong>Adds symbols to indicate file types:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>\/<\/strong> for directories<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>*<\/strong> for executable files<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>@<\/strong> for symbolic links<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>Example 9: Listing Only Directories (-d *\/)<\/strong><\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>ls -d *\/<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>\u2794 This command lists only directories.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>Example 10: Listing Files Recursively (-R)<\/strong><\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>ls -R<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>\u2794 It Displays files and directories recursively, including subdirectories.<\/p>\n\n\n\n<p><hr><p><strong>Also Read: <\/strong><a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/425\/remove-directory-in-linux.html\"><strong>How To Remove Directory in Linux With Command?<\/strong><\/a><\/p><hr><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>Example 11: Combining Multiple ls Options<\/strong><\/h3>\n\n\n\n<p>\u2794 You can combine multiple options in a single command for more control.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>ls -lah<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>This command:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>-l<\/strong> shows detailed information.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>-a<\/strong> includes hidden files.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>-h<\/strong> makes file sizes human-readable.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>Example 12: Using ls with grep to Filter Results<\/strong><\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>ls -l | grep &#8220;txt&#8221;<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>\u2794 It Lists only files containing <strong>&#8220;txt&#8221;<\/strong> in their name.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>Example 13: Counting the Number of Files<\/strong><\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>ls -1 | wc -l<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>\u2794 This command counts the number of files in the directory.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>Example 14: Sorting Files by Size (-lS)<\/strong><\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>ls -lS<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>\u2794 It Lists files sorted by size, the largest first.<\/p>\n\n\n\n<p><hr><p><strong>Also Read: <\/strong><a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/429\/install-rpm-files-on-linux.html\"><strong>How to Install RPM files on Different Linux Distributions?<\/strong><\/a><\/p><hr><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>Mastering the<strong> ls<\/strong> command is a great first step in confidently navigating the Linux command line. Whether simply listing files, filtering results, or checking file details, <strong>ls<\/strong> provides powerful ways to manage your directories efficiently.<\/p>\n\n\n\n<p>The more you experiment with different options, the more comfortable you&#8217;ll become with Linux file management.<\/p>\n\n\n\n<p>Start practising today, and soon, using ls will become second nature!<\/p>\n\n\n    <div class=\"blg-advrt-main blg-prm-bx\">\n        <div class=\"row\" style=\"display: flex; justify-content: space-evenly; align-items: center;\">\n            <div class=\"col-md-5\">\n                <div class=\"blg-advrt-first blg-advrt-right\">\n                    <img decoding=\"async\" src=\"https:\/\/www.hostitsmart.com\/assets\/images\/blog\/Hidden-Costs-and-Fees.png\" alt=\"Hidden-Costs-and-Fees\" \/>\n                <\/div>\n            <\/div>\n            <div class=\"col-md-7\">\n                <div class=\"blg-advrt-first blg-advrt-left\">\n                    <div class=\"blg_advrt_cnt\">\n                        Buy Linux VPS That Don\u2019t Affect Your Pocket                    <\/div>\n                    <p>\n                        Affordable pricing with top-notch \nfeatures for business                    <\/p>\n                    <div class=\"blg-advrt-first-btn affl-blg-btn\">\n                        <a href=\"https:\/\/www.hostitsmart.com\/servers\/vps-hosting\">\n                            Get Cheap Linux VPS                        <\/a>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    ","protected":false},"excerpt":{"rendered":"<p>Ever wondered how to quickly check what files and folders are inside a directory in Linux? That&#8217;s where the ls command comes in! It&#8217;s one of the most fundamental and frequently used commands in Linux, making file management easy. Whether you are a beginner or an experienced user, knowing how to use ls efficiently can [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[49],"tags":[],"class_list":["post-2423","post","type-post","status-publish","format-standard","hentry","category-vps"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Know About the ls Command in Linux With Examples<\/title>\n<meta name=\"description\" content=\"Learn the basics of the ls command in Linux with easy-to-follow examples. This beginner-friendly guide covers all essential ls options for newbies.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/430\/ls-command-in-linux.html\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Know About the ls Command in Linux With Examples\" \/>\n<meta property=\"og:description\" content=\"Learn the basics of the ls command in Linux with easy-to-follow examples. This beginner-friendly guide covers all essential ls options for newbies.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/430\/ls-command-in-linux.html\" \/>\n<meta property=\"og:site_name\" content=\"Host IT Smart Knowledge base\" \/>\n<meta property=\"article:published_time\" content=\"2025-02-17T14:32:19+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-03-26T04:52:02+00:00\" \/>\n<meta name=\"author\" content=\"Admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\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\":\"WebPage\",\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/430\/ls-command-in-linux.html\",\"url\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/430\/ls-command-in-linux.html\",\"name\":\"Know About the ls Command in Linux With Examples\",\"isPartOf\":{\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#website\"},\"datePublished\":\"2025-02-17T14:32:19+00:00\",\"dateModified\":\"2025-03-26T04:52:02+00:00\",\"author\":{\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/317c14a877385667f19d3b7496bd5108\"},\"description\":\"Learn the basics of the ls command in Linux with easy-to-follow examples. This beginner-friendly guide covers all essential ls options for newbies.\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/430\/ls-command-in-linux.html\"]}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#website\",\"url\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/\",\"name\":\"Host IT Smart Knowledge base\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/317c14a877385667f19d3b7496bd5108\",\"name\":\"Admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d4827c56a6721070dde339640d47ff44ba0d0e515c7e577cf29305ab72383fe3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d4827c56a6721070dde339640d47ff44ba0d0e515c7e577cf29305ab72383fe3?s=96&d=mm&r=g\",\"caption\":\"Admin\"},\"sameAs\":[\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/\"],\"url\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/author\/admin\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Know About the ls Command in Linux With Examples","description":"Learn the basics of the ls command in Linux with easy-to-follow examples. This beginner-friendly guide covers all essential ls options for newbies.","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:\/\/www.hostitsmart.com\/manage\/knowledgebase\/430\/ls-command-in-linux.html","og_locale":"en_US","og_type":"article","og_title":"Know About the ls Command in Linux With Examples","og_description":"Learn the basics of the ls command in Linux with easy-to-follow examples. This beginner-friendly guide covers all essential ls options for newbies.","og_url":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/430\/ls-command-in-linux.html","og_site_name":"Host IT Smart Knowledge base","article_published_time":"2025-02-17T14:32:19+00:00","article_modified_time":"2025-03-26T04:52:02+00:00","author":"Admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/430\/ls-command-in-linux.html","url":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/430\/ls-command-in-linux.html","name":"Know About the ls Command in Linux With Examples","isPartOf":{"@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#website"},"datePublished":"2025-02-17T14:32:19+00:00","dateModified":"2025-03-26T04:52:02+00:00","author":{"@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/317c14a877385667f19d3b7496bd5108"},"description":"Learn the basics of the ls command in Linux with easy-to-follow examples. This beginner-friendly guide covers all essential ls options for newbies.","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/430\/ls-command-in-linux.html"]}]},{"@type":"WebSite","@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#website","url":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/","name":"Host IT Smart Knowledge base","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/317c14a877385667f19d3b7496bd5108","name":"Admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d4827c56a6721070dde339640d47ff44ba0d0e515c7e577cf29305ab72383fe3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d4827c56a6721070dde339640d47ff44ba0d0e515c7e577cf29305ab72383fe3?s=96&d=mm&r=g","caption":"Admin"},"sameAs":["https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/"],"url":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/author\/admin"}]}},"_links":{"self":[{"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts\/2423","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/comments?post=2423"}],"version-history":[{"count":4,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts\/2423\/revisions"}],"predecessor-version":[{"id":2642,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts\/2423\/revisions\/2642"}],"wp:attachment":[{"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/media?parent=2423"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/categories?post=2423"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/tags?post=2423"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}