• Modern UX

    Edit and navigate faster in the terminal with Warp's IDE-like input editor.

  • Warp AI

    AI suggests what commands to run and learns from your documentation.

  • Agent Mode

    Delegate tasks to AI and use natural language on the command line.

  • Warp Drive

    Save and share interactive notebooks, workflows, and environment variables.

  • All Features

Linux
TOPIC

LiLinux

Featured in Linux

Articles in Linux

55

New

A→Z

Bash Concatenate Strings

Join two strings together in Bash

BashLinuxUnix
Prianka Subrahmanyam

Bash Comments

Comments will help make your scripts more readable

BashLinuxUnix
Prianka Subrahmanyam

Bash printf

How to use string formatting with bash printf

BashUnixLinux
Glory Kim

How to Add a User to Sudoers

Grant elevated privileges to users

LinuxUnix
Razvan Ludosanu

Bash Case Statement

A popular alternative to the if-then-else statement

BashLinuxUnix
Amit Jotwani

Bash Aliases

Create an alias for common commands

BashLinuxUnix
Brett Terpstra

Chmod 755

General meaning, examples, and flags for chmod 755

LinuxUnix
Razvan Ludosanu

Reading User Input

Via command line arguments and prompting users for input

BashLinuxUnix
Amit Jotwani

Chmod +X

An overview of chmod +x and how to use it

UnixLinux
Razvan Ludosanu

Chown Recursively

How to recursively change the ownership of files

LinuxUnix
Razvan Ludosanu

Curl Follow Redirect(s)

Learn how to make curl automatically follow a redirect along with the most common pitfalls to avoid when doing so.

LinuxUnix
Razvan Ludosanu

Curl Post Request

Use cURL to send data to a server

BashUnixLinux
Zev Stravitz

Curl With Headers

Send request headers with cURL

LinuxUnix
Razvan Ludosanu

Curl With Basic Auth

Perform a basic access authentication with cURL

LinuxUnix
Razvan Ludosanu

Show Curl Headers

Curl request and response headers

LinuxUnix
Razvan Ludosanu

Grep Show Lines Before and After

Learn how to show N lines or all lines before and after the result returned by the `grep` command.

LinuxUnix
Razvan Ludosanu

How to run chmod recursively

Using -R is probably not what you want

LinuxBashUnix
Brett Terpstra

How to run cron every hour

Along with variations and examples

LinuxUnix
Philip Wilkinson

How to use sudo rm -rf safely

We'll help you understand its components

BashLinuxUnix
Neeran Gul

Kill a Process in Linux

Strategies for finding and killing processes

LinuxUnix
Shawn Tabai

Kill Command

Basic syntax and usage of the kill command

LinuxUnix
Tom Wagner

mkdir if not exists

Create directories when they don’t already exist

LinuxUnix
Amanda Khoo

How To Use Unix Wildcards

How to use wildcard characters in Linux/Unix commands

LinuxUnix
Brett Terpstra

Linux File Permissions Explained [Needs Table]

Understand what common expressions like “drwxr xr x” actually mean for a file or directory’s read, write, and execute permissions.

LinuxUnix
Brett Terpstra

Generate, Sign, and View a CSR With OpenSSL

Learn how to generate, self-sign, and verify certificate signing requests with `openssl`.

BashLinuxUnix
Razvan Ludosanu

Copy File From Remote To Local Using Scp

Copy files and directories from a remote to local

LinuxUnix
Razvan Ludosanu

Removing Directories in Linux

How to remove directories and their content

LinuxUnix
Razvan Ludosanu

What Does sudo chown Do?

Why sudo chown is sudo and some common pitfalls

LinuxUnix
Razvan Ludosanu

How To Use sudo su

A quick overview of using sudo su

LinuxUnixBash
Razvan Ludosanu

Verify Certificate With OpenSSL

Learn how to verify local and remote certificates with openssl

LinuxUnix
Razvan Ludosanu

Clear npm Cache

Learn how to clear the npm cache on Linux, macOS, and Windows.

NpmLinux
Razvan Ludosanu

Ignoring SSL Certificate Issues with cURL

Discover how to bypass SSL certificate verification in cURL for HTTPS endpoints, addressing both direct requests and those via proxies. We will also see how this could be handled both in the terminal and system-wide via the `.curlrc` file

LinuxUnix
Gabriel Manricks

Upload Files With curl

Learn how to upload a file to FTP, SFTP servers, Artifactory, and AWS S3 using the curl command.

LinuxUnix
Utsav Poudel

How To Copy A Directory In Linux

Learn how to copy directories and their content in Linux using the cp command with options like -r for recursive copying, -i for interactive mode, and -a for preserving attributes.

Linux
Philip Wilkinson

How to Download Files With curl And wget

Learn how to start and resume the download of files via the HTTP and FTP protocols using the curl and wget commands.

LinuxUnix
Razvan Ludosanu

Create Directories Recursively With mkdir

Learn how to recursively create nested directories using the mkdir command, Bash scripts, and Python scripts.

UnixLinux
Razvan Ludosanu

How To Filter The Output of Commands

Learn how to filter and format the output of commands and logs using the grep, awk, uniq, head, and tail commands.

LinuxGrep
Razvan Ludosanu

How To Unzip A tar.gz File

Learn how to unzip a tar.gz file on Linux, macOS, and Windows.

Linux
Utsav Poudel

Create User In Linux

Learn to create and configure user accounts in Linux in interactive and non-interactive mode using the useradd and adduser commands.

Linux

Change User Passwords In Linux

Learn how to change, manage and generate user passwords in Linux using the passwd, chpasswd, chage and openssl commands.

Linux
Razvan Ludosanu

Edit Files in Linux

Learn how to edit files in Linux using command-line file editors such as Vim, Nano, and Emacs, the output redirection operator, and the sed command.

Linux

List Users In Linux

Learn how to list users and groups in Linux.

Linux

Create Files In Linux

Learn how to create regular files in Linux using command line interface commands like touch, echo, cat, printf, and in-terminal text editors like Vim.

Linux

Copy Files In Linux

Learn how to safely and recursively copy one or more files locally and remotely in Linux using the cp and scp command.

Linux

Find Files In Linux

Learn how to find and filter files in Linux by owner, size, date, type and content using the find command.

Linux

Delete Files In Linux

Learn how to selectively delete files in Linux based on patterns and properties using the rm command.

Linux

Remover Users in Linux

Learn how to remove local and remote user accounts and associated groups and files in Linux using the userdel and deluser commands.

Linux

Switch Users In Linux

Learn how to switch between users, log in as another user, and execute commands as another user in Linux.

Linux

Create Groups In Linux

Learn how to manually and automatically create and list groups in Linux.

Linux

Format Command Output In Linux

Learn how to filter and format the content of files and the output of commands in Linux using the awk command.

Linux

POST JSON Data With Curl

How to send valid HTTP POST requests with JSON data payloads using the curl command and how to avoid common syntax pitfalls. Also, how to solve the HTTP 405 error code.

BashUnixLinux
Neeran Gul

Linux Chmod Command

Understand how to use chmod to change the permissions of files and directories. See examples with various chmod options.

Linux
Razvan Ludosanu

How to Check the Size of Folders in Linux

Learn how to output the size of directories and subdirectories in a human-readable format in Linux and macOS using the du command.

LinuxUnix
Razvan Ludosanu

Count Files in Linux

Learn how to count files and folders contained in directories and subdirectories in Linux using the ls, find, and wc commands.

LinuxUnix
Razvan Ludosanu

List Open Ports in Linux

Learn how to output the list of open TCP and UDP ports in Linux, as well as their IP addresses and ports using the netstat command.

UnixLinux
Razvan Ludosanu
12345

...

6

Trusted by hundreds of thousands of professional developers

Download Warp to get started

Download for Mac