== Users and permissions practicum == * Rig it so everything in the folder gets deleted tonight at 10pm. Every night at 10pm.== Local security == * How do you feel about `sudo`? * What's the difference
Latest Answer: My previous post just died on me. So, let me repeat what I wrote before. If both reach the thread, my apologies.Linker: What does it do??-------------------------The job of the linker is to combine one or more object modules and/or one of more libraries ...
Latest Answer: Tested script.#! /usr/bin/kshecho "start"for name in `ls -1`doecho "name $name"name1=`echo $name | tr [A-Z] [a-z]`;echo "name1 $name1"mv $name $name1;if [ -z $name ]thenexit;fidone ...
Latest Answer: This is easiest way:sleep seconds ...
Latest Answer: You can also use "finger" ...
Latest Answer: A process is a program in execution. And a Job is a task. ...
Latest Answer: I dont think so just by looking at the prompt one can recognize the shell [inputs pls, if otherwise], however you can run small commands to get the shell that you are using ps -p $$ should be your answer. ...
Latest Answer: #include #include int stat(const char *path, struct stat *buf);The stat() function obtains information about the named file andwrites it to the area pointed to by the buf argument. The pathargument points to a pathname ...
Latest Answer: A zombie process is a process that completed execution but still in process table. When a process ends, all of the memory and resources associated with it are deallocated so they can be used by other processes. However, the process's entry in the ...
Latest Answer: IPC also ...
View page [1] 2 3 4 Next >>

Go Top