QuestionQ69
Linux FundamentalsA symbolic link named latest_log must be created in the current directory and point to /var/log/app.log. Which command accomplishes this?
- A ln /var/log/app.log latest_log
- B ln -s /var/log/app.log latest_log
- C ln link /var/log/app.log latest_log
- D ln -s latest_log /var/log/app.log
Community Discussion