{"id":21133602,"url":"https://github.com/yuweaec/linux-shell-workshop","last_synced_at":"2026-05-15T12:34:56.837Z","repository":{"id":138290886,"uuid":"610577500","full_name":"YuweAEC/linux-shell-workshop","owner":"YuweAEC","description":null,"archived":false,"fork":false,"pushed_at":"2024-09-29T07:40:09.000Z","size":4,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-14T11:51:20.323Z","etag":null,"topics":["command","linux","linux-shell","shell"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/YuweAEC.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-03-07T03:35:27.000Z","updated_at":"2024-09-29T08:07:39.000Z","dependencies_parsed_at":null,"dependency_job_id":"2119b64e-7870-4ff3-9f84-7749baf7c2dc","html_url":"https://github.com/YuweAEC/linux-shell-workshop","commit_stats":null,"previous_names":["yuweaec/linux-shell-workshop"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/YuweAEC/linux-shell-workshop","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YuweAEC%2Flinux-shell-workshop","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YuweAEC%2Flinux-shell-workshop/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YuweAEC%2Flinux-shell-workshop/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YuweAEC%2Flinux-shell-workshop/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/YuweAEC","download_url":"https://codeload.github.com/YuweAEC/linux-shell-workshop/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YuweAEC%2Flinux-shell-workshop/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33067442,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-15T11:35:32.926Z","status":"ssl_error","status_checked_at":"2026-05-15T11:35:31.362Z","response_time":103,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["command","linux","linux-shell","shell"],"created_at":"2024-11-20T06:14:04.218Z","updated_at":"2026-05-15T12:34:56.821Z","avatar_url":"https://github.com/YuweAEC.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"`Markdown file listing basic Linux commands that work on Windows (via WSL), Linux, and Mac, along with their uses and full forms.`\n# Basic Linux Commands\n\nThis guide provides an overview of essential Linux commands, including their uses and full forms. These commands can be executed on Linux, macOS, and Windows (using WSL).\n\n## INDEX\n1. [Navigation and File Management Commands](#navigation-and-file-management-commands)\n   - [pwd](#pwd)\n   - [ls](#ls)\n   - [cd](#cd)\n   - [mkdir](#mkdir)\n   - [rmdir](#rmdir)\n   - [touch](#touch)\n   - [rm](#rm)\n   - [cp](#cp)\n   - [mv](#mv)\n2. [File Viewing and Editing Commands](#file-viewing-and-editing-commands)\n   - [cat](#cat)\n   - [nano](#nano)\n   - [vim](#vim)\n3. [System Information and Monitoring Commands](#system-information-and-monitoring-commands)\n   - [uname](#uname)\n   - [top](#top)\n   - [df](#df)\n   - [free](#free)\n4. [File Permissions and Ownership Commands](#file-permissions-and-ownership-commands)\n   - [chmod](#chmod)\n   - [chown](#chown)\n5. [Networking Commands](#networking-commands)\n   - [ping](#ping)\n   - [ifconfig / ip](#ifconfig--ip)\n   - [netstat](#netstat)\n6. [Other Useful Commands](#other-useful-commands)\n   - [man](#man)\n   - [history](#history)\n   - [clear](#clear)\n\n---\n\n## Navigation and File Management Commands\n\n### pwd\n- **Full Form**: Print Working Directory\n- **Use**: Displays the current working directory.\n- **Command**:\n  ```sh\n  $ pwd\n  ```\n\n### ls\n- **Full Form**: List\n- **Use**: Lists the files and directories in the current directory.\n- **Command**:\n  ```sh\n  $ ls\n  ```\n\n### cd\n- **Full Form**: Change Directory\n- **Use**: Changes the current directory to the specified one.\n- **Command**:\n  ```sh\n  $ cd \u003cdirectory_path\u003e\n  ```\n\n### mkdir\n- **Full Form**: Make Directory\n- **Use**: Creates a new directory.\n- **Command**:\n  ```sh\n  $ mkdir \u003cdirectory_name\u003e\n  ```\n\n### rmdir\n- **Full Form**: Remove Directory\n- **Use**: Deletes an empty directory.\n- **Command**:\n  ```sh\n  $ rmdir \u003cdirectory_name\u003e\n  ```\n\n### touch\n- **Full Form**: N/A (Creates an empty file)\n- **Use**: Creates a new empty file or updates the timestamp of an existing file.\n- **Command**:\n  ```sh\n  $ touch \u003cfilename\u003e\n  ```\n\n### rm\n- **Full Form**: Remove\n- **Use**: Deletes files or directories.\n- **Command**:\n  ```sh\n  $ rm \u003cfilename\u003e\n  ```\n\n### cp\n- **Full Form**: Copy\n- **Use**: Copies files or directories.\n- **Command**:\n  ```sh\n  $ cp \u003csource\u003e \u003cdestination\u003e\n  ```\n\n### mv\n- **Full Form**: Move\n- **Use**: Moves or renames files or directories.\n- **Command**:\n  ```sh\n  $ mv \u003csource\u003e \u003cdestination\u003e\n  ```\n\n---\n\n## File Viewing and Editing Commands\n\n### cat\n- **Full Form**: Concatenate\n- **Use**: Displays the content of a file.\n- **Command**:\n  ```sh\n  $ cat \u003cfilename\u003e\n  ```\n\n### nano\n- **Full Form**: N/A (Text editor)\n- **Use**: Opens a file for editing using the `nano` text editor.\n- **Command**:\n  ```sh\n  $ nano \u003cfilename\u003e\n  ```\n\n### vim\n- **Full Form**: Vi Improved\n- **Use**: Opens a file for editing using the `vim` text editor.\n- **Command**:\n  ```sh\n  $ vim \u003cfilename\u003e\n  ```\n\n---\n\n## System Information and Monitoring Commands\n\n### uname\n- **Full Form**: Unix Name\n- **Use**: Displays system information (e.g., OS name).\n- **Command**:\n  ```sh\n  $ uname\n  ```\n\n### top\n- **Full Form**: Table Of Processes\n- **Use**: Displays dynamic real-time information about running processes.\n- **Command**:\n  ```sh\n  $ top\n  ```\n\n### df\n- **Full Form**: Disk Filesystem\n- **Use**: Displays disk space usage.\n- **Command**:\n  ```sh\n  $ df\n  ```\n\n### free\n- **Full Form**: N/A (Displays memory usage)\n- **Use**: Displays the amount of free and used memory in the system.\n- **Command**:\n  ```sh\n  $ free\n  ```\n\n---\n\n## File Permissions and Ownership Commands\n\n### chmod\n- **Full Form**: Change Mode\n- **Use**: Changes file or directory permissions.\n- **Command**:\n  ```sh\n  $ chmod \u003cpermissions\u003e \u003cfilename\u003e\n  ```\n\n### chown\n- **Full Form**: Change Owner\n- **Use**: Changes file or directory ownership.\n- **Command**:\n  ```sh\n  $ chown \u003cowner\u003e:\u003cgroup\u003e \u003cfilename\u003e\n  ```\n\n---\n\n## Networking Commands\n\n### ping\n- **Full Form**: Packet Internet Groper\n- **Use**: Checks the connectivity to a network host.\n- **Command**:\n  ```sh\n  $ ping \u003chostname or IP\u003e\n  ```\n\n### ifconfig / ip\n- **Full Form**: Interface Configuration\n- **Use**: Displays or configures network interfaces.\n- **Command**:\n  ```sh\n  $ ifconfig\n  # or\n  $ ip a\n  ```\n\n### netstat\n- **Full Form**: Network Statistics\n- **Use**: Displays network connections and routing tables.\n- **Command**:\n  ```sh\n  $ netstat\n  ```\n\n---\n\n## Other Useful Commands\n\n### man\n- **Full Form**: Manual\n- **Use**: Displays the manual page for a command.\n- **Command**:\n  ```sh\n  $ man \u003ccommand\u003e\n  ```\n\n### history\n- **Full Form**: N/A (Shows command history)\n- **Use**: Displays the command history.\n- **Command**:\n  ```sh\n  $ history\n  ```\n\n### clear\n- **Full Form**: N/A (Clears the terminal screen)\n- **Use**: Clears the terminal screen.\n- **Command**:\n  ```sh\n  $ clear\n  ```\n\n---\n\n**Note**: These commands work on Linux, macOS, and Windows (via WSL). The availability of some commands may vary depending on the system and configurations.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyuweaec%2Flinux-shell-workshop","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyuweaec%2Flinux-shell-workshop","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyuweaec%2Flinux-shell-workshop/lists"}