Skip to main content

Command Palette

Search for a command to run...

Linux basic commands :

Linux basic commands

Published
1 min read
Linux basic commands :
A

Welcome to the dynamic realm of DevOps! I'm Anushka Kushwaha, passionate about blending technology with efficiency. My focus on cloud computing, containerization, and automation drives my journey in enhancing software development and deployment. Join me as I delve into the evolving landscape of DevOps, sharing experiences and insights along the way. Together, let's explore the limitless possibilities of this transformative field.

  • pwd: Print the current working directory.

  • ls: List directory contents.

  • cd: Change directory.

  • mkdir: Make directories.

  • touch: Create empty files or update file timestamps.

  • cp: Copy files and directories.

  • mv: Move or rename files and directories.

  • rm: Remove files and directories (use with caution).

  • cat: Concatenate and display the content of files.

  • less: View file contents interactively.

  • head: Output the first part of files.

  • tail: Output the last part of files.

  • grep: Print lines matching a pattern.

  • chmod: Change file modes or access permissions.

  • sudo: Execute a command as a superuser or another user.

  • man: Display the manual of a command.

  • echo: Display a line of text/string on the standard output.

  • df: Display disk space usage.

  • du: Estimate file space usage.

  • find: Search for files in a directory hierarchy.

Thanks .