You are on page 1of 1

Suppose pritam know that an application 'someapp' is installed on the current system.

You have
already examine the man and info pages for 'someapp', but are trying to find additional
information about 'someapp'. Which of the following directories is the BEST first place to look for
further documentation files?

/usr/share/doc/someapp-2.37

Which Linux file can be used to configure the default bash shell behavior for EVERY users on a
system?

/etc/profile

Which of the following command would allow you to examine how many times remote users
have opened secure shells into the current system?

vi /var/log/messages

priyatam wnat to know that what special line is normally placed at the top of a custom bash shell
script?

#!/bin/bash

I have a file called 'mypaper.txt' or 'mypaper.tex' or some such somewhere, but I don't
remember where I put it. How do I find it?

$ find ~ -name "mypaper*"

I have a file containing a list of words. I want to sort it in reverse order and print it.

$ cat myfile.txt | sort -r | lpr (lpr means submit files for printing)

You might also like