File Manipulation Commands
Manipulating files is a common task in Linux. Here are some basic commands:
cp: Copies files or directories.cp source_file destination_filemv: Moves or renames files.mv old_name new_namerm: Removes files or directories.rm file_nametouch: Creates an empty file.touch new_file