摘要:
阅读全文
摘要:
#!/bin/bash if [ $# -ne 1 ] then echo "Usage: $0 filename"; exit -1 fi filename=$1 egrep -o "\b[[:alpha:]]+\b" $filename | \ awk '{ count[$0]++ } END{ 阅读全文
摘要:
修改Gemfile(大部分为自动生成) bundle install 生成rspec测试模块 push至git上 设置rails,让其服务于静态资源文件 config/environments/production.rb TestApp::Application.configure do . . . 阅读全文