Created
April 7, 2013 03:21
-
-
Save megane9988/5328780 to your computer and use it in GitHub Desktop.
はじめてのシェルスクリプト。コマンドを順番に書くとその通りに実行してくれる。実行はコマンド $sh ファイル名.sh
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
mkdir ~/Desktop/test | |
# デスクトップにtestというディレクトリをつくる | |
cd ~/Desktop/test | |
# testディレクトリに移動する | |
roots new mega | |
# 新規rootsプロジェクトとしてmegaをつくる | |
cd mega | |
# megaに移動する | |
roots watch | |
# rootsサーバを起動し、監視を始める |
Wow thanks! this is my first shell. shell is fan!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
it's Cool!