The ln command creates symbolic links ( symlink for short or soft links) and hard links in Linux. This utility comes pre-installed on every Linux distro.
Example of creating a soft link:
sudo ln -s /opt/cleanup.sh /bin/cleanup
Useful ln commands and options
The rm command is a Linux built-in used to delete files and directories.
Simply typing the rm command followed by a filename will permanently delete the file from the system thereby freeing up some disk space.
Example
rm hello.txt
Useful options
The zip command is used to compress one or more multiple files into a single file with the .zip file extension.
Example: