/var directory in Unix contain configuration details of the System
True
False
How can I tell which version of Unix I am using?
version
version -a
uname
no command
How do I uncompress a file?
gunzip/expand
gzip
zip
winzip
How do I tar/untar a file?
tar -cvf file/tar -xvf file
tar -xvf file /tar -cvf file
tar -cvf file.tar /tar -xvf file.tar /
tar -xvf file.tar /tar -cvf file.tar /
How do I remove a file/directory?
removedir
rmdir
rm
None
How do I change my password and finger information?
chpasswd
passwd
chpass
password
I know UNIX can multitask -- how do I switch between programs?
fg,bg, &
switch
Both
How do I make all filenames in a directory lowercase?
for i in *; do mv $i echo $i | tr [A-Z] [a-z]; done
echo $i | tr [A-Z] [a-z]
ls | mv $i | tr [A-Z] [a-z];
ls | for I in do mv $i | tr [A-Z] [a-z]; done
"PWD" stands for
past working directory
people working directory
path working directory
present working directory
What is VI?
A application to create Unix boot immages
Application to create text files
Application to create animations
Application to create text file as well as animations