This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #------------------------------------------------ | |
| #------------Searching Algorithms---------------- | |
| #------------------------------------------------ | |
| ''' | |
| Searching Algorithm: | |
| 1. Linear Search : Iterative and Recursive | |
| 2. Binary Search : Iterative and Recursive | |
| 3. Interpretation Search : Iterative |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| #Script to extract Multiple RAR files and place each RAR file's content in its own directory | |
| for z in *.rar | |
| do | |
| # removing all white space. Generating Directory name | |
| c="$(echo -e "${z}" | tr -d '[:space:]')" | |
| # Creating directory. Replace <Directory Address> with your own Directory Address. | |
| mkdir /<Directory Address>/$c; |