This file contains 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 | |
for i in `find . -name '*.erb'` ; do | |
html2haml $i `echo $i | sed 's/\.erb/\.haml/'` | |
done | |
find . -name '*.erb' -exec rm \{\} \; |
This file contains 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
for i in ./*rhtml*;do mv -- "$i" "${i//rhtml/html.erb}";done |
This file contains 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
/** | |
* Simple Singly Linked List | |
* Demonstrating check for cycles by remembering all visited nodes | |
* | |
* Using BOOST::Unordered_map as a hash table implementation | |
* | |
* \author Billy Okal | |
*/ |
NewerOlder