File

Bash For each line in a file
How do you read each line in a file in Linux? How do you iterate through a file in bash? How do I loop through a file line? How read file line by line...
Find Large Files in Linux
The procedure to find largest files including directories in Linux is as follows Open the terminal application. Login as root user using the sudo -i c...
How to Execute .bin and .run Files in Ubuntu
This can be done by doing the following Open a terminal. Browse to the folder where the executable file is stored. Type the following command for any ...
Touch Command in Ubuntu 20.04
Touch is a popular command in the Linux system that can be used for performing many tasks, rather than just creating an empty file. Using the touch co...
How to replace the last occurrence using 'sed'
How do I change the last occurrence of a string in Unix? How do you find and replace in SED? How do I change the first occurrence in SED? Does SED cha...
How to Convert m4v to wav format in Ubuntu
How do I convert M4V to WAV? How do I convert M4V files? How do I make a WAV file? How do I convert m4a to mp3 in Ubuntu? How do I convert an M4A file...
How do I Mount and Unmount a File System in Linux?
On Linux and UNIX operating systems, you can use the mount command to attach (mount) file systems and removable devices such as USB flash drives at a ...
Write into a File in PHP using fwrite()
In order to write to a file in PHP you need to go through the following steps Open the file. Write to the file. Close the file $select = data what we ...
How to set up NFS Server and Client on Debian 10
Follow the below steps to do so Step 1 Install NFS Kernel Server. ... Step 2 Create the Export Directory. ... Step 3 Configure the export directory. ....
How to find a File in Linux
Basic Examples find . - name thisfile.txt. If you need to know how to find a file in Linux called thisfile. ... find /home -name *.jpg. Look for all ....
How to execute a .run or .bin package in Linux
How do I run a .bin file in Linux? How do I run a .RUN file in Linux terminal? How do I run a .bin file? How do I run a .bin file in Terminal? How do ...
Quickly Create a Text File Through the Debian Terminal
How to create a file in Linux from terminal window? Create an empty text file named foo.txt touch foo.bar. ... Make a text file on Linux cat > file...