What is an Unix command to convert HEX value to ASCII value
located in any flat file.

Answer Posted / gr

dd conv=ascii if=test.log of=test1.log

Is This Answer Correct ?    1 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the use of the tee command?

805


Which unix command lists files/folders in alphabetical order?

1091


What is command statement?

780


What is nr in awk command?

781


What are awk commands?

793


What is in grep command?

844


How do I run a whois command?

814


Which command can you use to find the currently running process in unix server?

778


What do chown command do?

781


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:

1968


What is the search command in unix?

814


How do I search for a file in unix command?

735


What is awk used for?

823


What does the “echo” command do?

830


What is the difference between cat command and more command?

788