Related differences

Linux vs Unix

Ques 6. Which command is used to delete all files in the current directory and all its sub-directories?

rm -r *

Is it helpful? Add Comment View Comments
 

Ques 7. Write a command to display a file?s contents in various formats?

$od -cbd file_name
c - character, b - binary (octal), d-decimal, od=Octal Dump.

Is it helpful? Add Comment View Comments
 

Ques 8. What will the following command do?

$ echo *
It is similar to 'ls' command and displays all the files in the current directory.

Is it helpful? Add Comment View Comments
 

Ques 9. Is it possible to create new a file system in UNIX?

Yes, 'mkfs' is used to create a new file system.

Is it helpful? Add Comment View Comments
 

Ques 10. Is it possible to restrict incoming message?

Yes, using the 'mesg' command.

Is it helpful? Add Comment View Comments
 

Most helpful rated by users: