{"id":23759779,"url":"https://github.com/muhammedmagdyy/linux-commands","last_synced_at":"2025-07-10T10:32:16.407Z","repository":{"id":99942358,"uuid":"498445308","full_name":"MuhammedMagdyy/Linux-Commands","owner":"MuhammedMagdyy","description":"Linux commands for Operating Systems course at October 6 University.","archived":false,"fork":false,"pushed_at":"2023-07-28T15:10:16.000Z","size":7,"stargazers_count":7,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-12T11:58:51.113Z","etag":null,"topics":["linux"],"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/MuhammedMagdyy.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":"2022-05-31T18:05:31.000Z","updated_at":"2024-06-01T23:38:17.000Z","dependencies_parsed_at":"2025-02-20T23:37:14.159Z","dependency_job_id":null,"html_url":"https://github.com/MuhammedMagdyy/Linux-Commands","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MuhammedMagdyy/Linux-Commands","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MuhammedMagdyy%2FLinux-Commands","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MuhammedMagdyy%2FLinux-Commands/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MuhammedMagdyy%2FLinux-Commands/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MuhammedMagdyy%2FLinux-Commands/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MuhammedMagdyy","download_url":"https://codeload.github.com/MuhammedMagdyy/Linux-Commands/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MuhammedMagdyy%2FLinux-Commands/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264565908,"owners_count":23629066,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["linux"],"created_at":"2024-12-31T20:19:53.612Z","updated_at":"2025-07-10T10:32:16.387Z","avatar_url":"https://github.com/MuhammedMagdyy.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Linux Commands\n\nI've created this repository to help my friends in operating system course at october 6 university.\nHere're 2 playlists I've recorded to [How to install debian](https://www.youtube.com/playlist?list=PLs3AnacXmIa_FeAQDF3u2Bf1cY-ZCa_P7) and [it's commands](https://www.youtube.com/playlist?list=PLs3AnacXmIa9qrhcJmxS29VB0zfSkgDPO)\n\n---\n## General Commands\n\n| Command | Description |\n| --- | --- |\n| `date` | shows the current date |\n| `cal [month]  [year]` | shows the current calender with selected month and year |\n| `clear` | clear all things in terminal |\n| `history` | show all history commands |\n| `history -c` | deletes all history commands |\n| `whoami` | shows the current online user |\n| `who` | shows how many times your device opened |\n| `echo` | prints a string in the terminal |\n| `pwd` | shows where is your current directory |\n| `cd [Directory]` | change your current directory to the chosen one |\n| `cd -` | change your current directory to the previous one |\n| `cd ..` | make a previous step in the directory structure |\n| `ls [Directory]` | list all things in this directory |\n| `man [command]` | display any command in details |\n| `passwd` | change your current password |\n---\n\n##  Add / Delete Users \n| Command | Description |\n| --- | --- |\n| `su` | go to the root and switch the user |\n| `exit` | logout from the current user |\n| `adduser [user]` | add new user to the system |\n| `deluser --remove-home [user]` | delete the user |\n--- \n\n## Create / Delete Files and Directories\n| Command | Description |\n| --- | --- |\n| `cat [Directory / File]` | shows the content of the files |\n| `cat \u003e [Directory / File]` | create a new file |\n| `mkdir [Directory / Folder]` | create a new folder |\n| `rmdir [Directory / Folder]` | delete folders |\n| `rm [Directory / File]` | delete files |\n| `rm -r [Directory / Folder]` | Delete all content in the folder |\n| `rm -r -i [Directory / Folder]` | ask after deleting |\n---\n\n## Operations on Files and Directories\n* cp [-flag] [items] [destination] \n* mv [-flag] [items] [destination] \n\u003cbr /\u003e\n\n| Command | Description |\n| --- | --- |\n| `cp [File or Directory] [File or Directory]` | copy the content of the first one to the destination |\n| `cp [File 1] [File 2] [Directory]` | copy the files to the choosen directory |\n| `cp -r [Directory 1] [Directory 2]` | copy directory 1 to directory 2 |\n| `mv [File or Directory] [File or Directory]` | move the content of the first one to the destination |\n| `mv [File 1] [File 2] [Directory]` | move the files to the choosen directory |\n| `mv [Directory 1] [Directory 2]` | move directory 1 to directory 2 |\n| `mv [File / Directory] [new name]` | rename files or directories |\n| `mv -i [File / Directory] [new override]` | ask me to override if the name that taken is currently in use |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmuhammedmagdyy%2Flinux-commands","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmuhammedmagdyy%2Flinux-commands","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmuhammedmagdyy%2Flinux-commands/lists"}