In Unix, which of the following commands could you use to find files with a .log extension in the /var directory? Ranjitkumar GENERAL LINUX No comments In Unix, which of the following commands could you use to find files with a .log extension in the /var directory? find /var -name "*.log" mv "*.log" ls -l *.log find / | grep "*.log" EXPLANATION The "find" command specifies the directory, "/var". The "-name" option tells the "find" command to show only files that have a ".log" extension. SOURCE https://quiz.techlanda.com/2017/11/in-unix-which-of-following-commands.html Share:
0 comments:
Post a Comment