text file – POFTUT

How To Use Vi Editor?

vi is a very powerful text editor where most of the Linux distributions provide. vim is an improved version of the vi editor with more features. Most of the intersecting features comply with vim. In this tutorial, we will learn how to use vi from start. Open File We will start by opening a text file by providing the … Read more

How To Grep Text Files With Powershell Grep or Select-String Cmdlet In Windows?

Linux provides tool named grep for filter text data or output according to given string or regular expression. This tool is popular amongst Linux system administrators. On the other side Windows operating systems generally lacks this tool and its functionality up to Powershell. Powershell provides Select-String commandlet to provide similar features and options the Linux grep … Read more

Search Text Files Content With Findstr Command In Windows

Windows provides findstr tool to search file contents. These file contents expected to be text and string but binary binary files are accepted too. But searching binary files and content will not give good results. In this tutorial we will look different usage types of the findstr command. Keep in mind that this is different than … Read more