Rails Girls London - 19th-20th April 2013
.
|____home
| |____despo
| | |____documents
| | |____pictures
root path, / in unix systems, C:\ in windows
.
home path: is similar to C:\Users on Windows
|____home
mkdir home
ls
cd is short for change directory
cd home
pwd print working directory
pwd
mkdir pictures documents
touch documents/file.txt
touch only creates a file if it doesn't already exist
cd documents && ls
cd -
ls -lR
l: list
R: list subdirectories recursively
ls -lR | grep file
grep searches the input for matches
echo "Get excited \nand make things" | grep excited
\n newline character
ls -lR > list.txt
Can be used to create a file with content
echo "get milk" > todo.txt
cat todo.txt
echo "get cookies" >> todo.txt
alias railsgirlslondon=~/code/railsgirls-london
store aliases in your .bashrc or .zshrc so you don't have to define them all the time
use alias
railsgirlslondon
man displays the manual for any command
man alias
Create a tree alias, this will display a nice structure of your current directory tree
alias tree="find . -print | sed -e 's;[^/]*/;|;g;s;|; |;g'"
View all available rake tasks
rake -T
Chain rake tasks
rake db:create db:migrate db:seed
create database, run migrations and seed data
Update all gems that don't have a version fixed
bundle update
the gems are specified in the Gemfile
Open a gem in your editor
bundle open mail
Run rails using shortcuts
rails server
rails s
rails console
rails c