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 | |
# This script is used to remove ".svn" directory resursively in the current directory | |
# author: Neo Smith | |
# 2014.4.27 | |
del_svn() { | |
for file in `ls -a`; do | |
# ignore . and .. | |
if [ "." == $file -o ".." == $file ]; then |
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
# ~/.bashrc: executed by bash(1) for non-login shells. | |
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
# for examples | |
# If not running interactively, don't do anything | |
case $- in | |
*i*) ;; | |
*) return;; | |
esac |
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
{ | |
"color_scheme": "Packages/Color Scheme - Default/Solarized (Light).tmTheme", | |
"font_face": "Bitstream Vera Sans Mono", | |
//"font_face": "Droid Sans Mono", | |
//"font_face": "Liberation Mono", | |
//"font_face": "DejaVu Sans Mono", | |
"font_size": 11, | |
"font_options": [], | |
// Set to 0 to disable smooth scrolling. Set to a value between 0 and 1 to | |
// scroll slower, or set to larger than 1 to scroll faster |
NewerOlder