You can create an empty file using touch command in Linux
Syntax:
touch [options] <filename or path to file>
Examples:
1. touch file1
2. Touch can also create any number of files simultaneously. The following command would create three new, empty files named file1, file2, and file3:
touch file1 file2 file3
3. touch -t 201212101830.55 file1
Here are the options for the command:

The sort command is used to sort the contents of a file. You can sort the data in a text Read more
sed, short for "stream editor", allows you to filter and transform text. A stream editor is used to perform basic Read more
Cron is the system process that will automatically perform tasks for you according to a set schedule. The schedule is Read more
To extract archive file in Linux, you can use the tar command, used for extracting content from the archive files. "tar" Read more