What Is the command to change a file's creation time. means
one file is created at the time 15:19 then time should br
changed to 14:14

Answer Posted / anilkumar

TOUCH -T [CCYYMMDhhmm] Filename in HP-UNIX

Is This Answer Correct ?    0 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are some command words?

670


How do I search for text in vi?

667


How do you grep recursively?

656


Who wrote grep?

659


What does 'mkdir' command do in UNIX?

763






What is the general format of unix command syntax?

781


Differentiate cat command from more command.

664


What is time_t?

684


Enumerate some of the most commonly used network commands in unix?

707


Which command will print your home directory on screen?

666


Differentiate cmp command from diff command.

677


What does grep v do?

643


Why is awk called awk?

665


How do I find previous commands in unix?

682


When i run a programm of orphan process. Instead of getting child's parent (ppid)=1 ..i get 1400 and it varies as per system. How can i findthe right soluion??? My pgm: #include # include int main() { int pid; pid=fork(); if(pid < 0) {exit(-1);} else if(pid==0) { printf("Child Process is Sleeping ..."); sleep(10); printf("Orphan Child's Parent ID : %u ",getppid()); } else { printf("Parent Process Completed ... %u ",getpid()); exit(0); } return 0; } Output:

1850