Friday, July 10, 2015

Unix Commands

1. grep <string> *                     // to sort
2. grep -c  "error" logfile.txt    // to see  how many times the word error has printed in log file
3. qlicense  // to check the license in unix
4. irun         //to use the cadence simulator
5. zgrep <string> // to grep in a z file
6. grep A|B // to grep string in A or B
7. meld <file A> <file B> // to compare two files
8. tkdiff // to compare two files
9. grep - l "main"  *.sv  // will list all the .sv files which contents had main

Ethernet and more

Ethernet is a protocol under IEEE 802.33 standard User Datagram Protocol (UDP) UDP is a connectionless transport protocol. I...