Multiple choice technology operating systems Which command will create a soft link to a file? ls -n ln ln -s link -s Reveal answer Fill a bubble to check yourself C Correct answer Explanation The ln -s command creates symbolic (soft) links in Unix/Linux systems. The -s flag specifies a symbolic link rather than a hard link. Option A is the wrong command, option B creates hard links by default, and option D is not a valid command.