- Markdown style
[](https://youtu.be/nTQUwghvy5Q)- HTML style
<a href="http://www.youtube.com/watch?feature=player_embedded&v=nTQUwghvy5Q" target="_blank">| #A shell script that will rename all the text files in a directory | |
| #each file will be named with the first line of text from that file | |
| for file in * | |
| do | |
| # Avoid renaming diretories! | |
| if [ -f "$file" ] | |
| then | |
| newname=`head -1 $file` | |
| if [ -f "$newname" ] |
| defaults write ~/.MacOSX/environment.plist M2_HOME `brew --prefix maven`/libexec | |
| defaults write ~/.MacOSX/environment.plist M2 `brew --prefix maven`/libexec/bin |
| --- | |
| layout: default | |
| --- | |
| <div class="blog-index"> | |
| {% assign post = site.posts.first %} | |
| {% assign content = post.content %} | |
| {% include post_detail.html %} | |
| </div> |