What does the following command do? cut -f1 -d':' file.txt
cut -f1 -d':' file.txt
Deletes the first character of each line in the file.
Splits the file into two based on the first occurrence of ':'.
Prints the first field of each line, using ':' as the delimiter.
Changes ':' to ',' in the file.