Categories
Tags
a Accessibility Advanced Algorithms Alias API Design Authentication Bash bash Basics Beginners Best Practices Big O bun cat cd CLI Cloudflare Comments Container Elements Container Queries cp css CSS Data Structures Delta deno DevOps Doctype Download Editors Error Examples Features figure File Watching Filesystem fish Fish Shell footer frontend Guide Hardware Upgrade header Hello World History Homebrew HTML HTML5 humor img javascript JavaScript Laptop Review Learning less Links linux Linux Linux Drivers ls macOS Media Queries meta Mobile-First mv Netcat Networking Node.js npm Open Source Package Manager picture pm2 Privacy Productivity programming Programming pwd Quill Remote Access Responsive Design Responsive Images Rich Text Editor rmdir Runes Scalability section Security Self-hosting Semantic HTML shell Shell Shell Script Shells srcset State Management Structure Svelte Svelte 5 Svelte Store SvelteKit svg Tables tail Tech Journey Text Formatting Tools touch Troubleshooting Tunnel Tutorial TypeScript Ubuntu Unix ux Video Processing Vim web development Web Development web-development webdev WiFi
109 words
1 minutes
The UNIX Filesystem Commands
The UNIX Filesystem Commands
The UNIX filesystem commands allow you to manage files and directories on your system. This post provides an overview of common UNIX filesystem commands.
Common Commands
ls
The ls command lists the contents of a directory.
lscd
The cd command changes the current directory.
cd /path/to/directorypwd
The pwd command prints the current working directory.
pwdmkdir
The mkdir command creates a new directory.
mkdir new_directoryrm
The rm command removes files or directories.
rm file_namecp
The cp command copies files or directories.
cp source destinationmv
The mv command moves or renames files or directories.
mv source destinationConclusion
Understanding and using UNIX filesystem commands can help you efficiently manage files and directories on your system. By mastering these commands, you can perform various tasks with ease.
The UNIX Filesystem Commands
https://zxce3.net/posts/the-unix-filesystem-commands/