ls – POFTUT

Linux ls Command Tutorial To List Files and Directories

ls is base command provided by all Linux distributions. We can use ls command to list files, folders or directories. In this tutorial we will look different use cases about ls. List Files and Directories We will start with a simple example. We will use ls command without an option. This will list regular files and directories of … Read more

How To Find File By Name In Linux?

Linux provides different tools to find files for different attributes. We can find files according to their size, name, modification time location, etc. But one of the most used metrics is finding file according to its name. In this tutorial, we will look at different tools to find files by name in Linux. Find Files … Read more

How to Deal With Dashed File Names Like Open, Remove?

Dash (-) have important role in Linux and other operating systems. It is used by commands to specify options and arguments. This popular use case may create problems if we have files those provides dash. Linux commands generally need explicit operations to cope with file names those starts with dash. Create File Name Starts with … Read more

How To Find Files, Folders and Directories In Linux From Command Line?

How To Find Files, Folders and Directories In Linux From Command Line?

Linux provides different ways to find and locate files and folders. We can use GUI tools like GNOME and KDE file managers or other 3’rd party applications designed for finding files. In this tutorial, we will look at how to find files, folders, and directories from the command line. Tools To Find Files and Folder … Read more

How To Linux Bash For Loop In Files?

Bash provides a lot of useful programming functionalities. for loop is one of the most useful of them. We can use for loop for iterative jobs. Linux system administrators generally use for loop to iterate over files and folder. In this tutorial, we will look at how to use for loop to iterate over files … Read more

Useful Linux Commands

Useful Linux Commands

Linux is a command-based operating system. Most of the things are done in the command-line environment bash. In this tutorial, we will look at popular and useful commands used by Linux system administrators and users. You can access detailed tutorials simply clicking links below. tr tr command is used to translate or delete characters in the … Read more

Windows Dir Command Tutorial With Examples To List Files and File Information

Dir command is one of the most used Windows commands. Dir is used mainly to list files and directories in Windows operating systems. In this tutorial, we will look at different usage examples of the dir command. List Files and Folders Without providing any option and parameter we will list all files and folders in … Read more

Linux wc Command Word and Line Count Tutorial With Examples

Linux provides a lot of tools for text-related operations. wc is one of them. This tool is a little tool less than 10 options. In this tutorial, we will look at how to count bytes? How to count words? How to count Lines? and How to use wc with other Linux commands like find and … Read more

How To Show Linux File Size In Different Ways?

One of the most asked questions about files in Linux is how can I list file sizes in different formats? In this post, we will look at different commands to get file sizes. ls Command ls command is a primary command to list and get information about files and directories in Linux. ls command can … Read more

Linux ls Command Tutorial With Examples

Linux operating system provides a lot of different functionalities with different tools and commands. ls is the most used command in linux. ls is the arm and leg of Linux system administrator. ls provides a lot of different functionalities with different options. Man ls Man page of ls command can be retrieved like below. $ man ls List Files We can … Read more