「Windows/cygwin」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「==cygwinとは== windowsで使えるUNIX系OSコンソール ==ダウンロード== http://cygwin.com/ ==インストール== #setup.exeをクリック #ダウンロー...」) |
(→cygwinでgitブランチ名表示) |
||
(同じ利用者による、間の10版が非表示) | |||
行30: | 行30: | ||
alias c="cd /cygdrive/c" | alias c="cd /cygdrive/c" | ||
#source ~/.bashrc | #source ~/.bashrc | ||
+ | |||
+ | ==貼り付けショートカット変更== | ||
+ | Options/Keys/Ctrl+Shift+letter shortcuts | ||
+ | これでCtrl+Shift+vでいける | ||
==その他入れといたほうが良いコマンド(自分メモ== | ==その他入れといたほうが良いコマンド(自分メモ== | ||
行35: | 行39: | ||
#git | #git | ||
#mosh | #mosh | ||
+ | |||
+ | ==locateを使う方法== | ||
+ | updatedb --localpaths='/c/' | ||
+ | locate test | ||
+ | ==apt-cyg== | ||
+ | cygwinのパッケージ管理 | ||
+ | |||
+ | git clone https://github.com/transcode-open/apt-cyg.git | ||
+ | install apt-cyg /bin | ||
+ | |||
+ | 実行例 | ||
+ | apt-cyg install nano | ||
+ | |||
+ | ==cygwinでgitブランチ名表示== | ||
+ | cd /usr/local/src | ||
+ | git clone https://github.com/git/git.git | ||
+ | |||
+ | $ vi ~/.bash_profile | ||
+ | source /usr/local/src/git/contrib/completion/git-prompt.sh | ||
+ | source /usr/local/src/git/contrib/completion/git-completion.bash | ||
+ | GIT_PS1_SHOWDIRTYSTATE=true | ||
+ | $ source ~/.bash_profile | ||
+ | |||
+ | ==vimに色を付ける== | ||
+ | apt-cyg install vim | ||
+ | |||
+ | vi ~/.vimrc | ||
+ | syntax on | ||
+ | |||
+ | vi ~/.bash_profile | ||
+ | alias vi=vim | ||
+ | |||
+ | source ~/.bash_profile | ||
+ | |||
+ | ==openコマンドを使う== | ||
+ | vi ~/.bash_profile | ||
+ | alias open=cygstart | ||
+ | source ~/.bash_profile | ||
+ | |||
+ | ==mysql install== | ||
+ | apt-cyg install mysql | ||
+ | mysql -uroot -p -h 127.0.0.1 | ||
+ | |||
+ | ==その他apt-cygおすすめ== | ||
+ | apt-cyg install unzip | ||
+ | apt-cyg install tree | ||
+ | apt-cyg install make |
2017年12月25日 (月) 12:16時点における最新版
目次
cygwinとは
windowsで使えるUNIX系OSコンソール
ダウンロード
インストール
- setup.exeをクリック
- ダウンロード先を指定
cドライブへ移動
cd /cygdrive/c/
vimを使う
- setup.exeを実行
- select packageにてEditors/vimを選択
vimで日本語を扱う
- vim ~/.vimrc として以下入力(なかったら作る
set encoding=japan set fileencodings=utf-8,iso-2022-jp,sjis,euc-jp
shを日本語化
- vi ~/.bashrc (なかったら作る
export LANG="ja_JP.utf-8"
- source ~/.bashrc
cでcドライブへ移動
- vi ~/.bashrc
alias c="cd /cygdrive/c"
- source ~/.bashrc
貼り付けショートカット変更
Options/Keys/Ctrl+Shift+letter shortcuts
これでCtrl+Shift+vでいける
その他入れといたほうが良いコマンド(自分メモ
- openssh
- git
- mosh
locateを使う方法
updatedb --localpaths='/c/' locate test
apt-cyg
cygwinのパッケージ管理
git clone https://github.com/transcode-open/apt-cyg.git install apt-cyg /bin
実行例
apt-cyg install nano
cygwinでgitブランチ名表示
cd /usr/local/src git clone https://github.com/git/git.git
$ vi ~/.bash_profile source /usr/local/src/git/contrib/completion/git-prompt.sh source /usr/local/src/git/contrib/completion/git-completion.bash GIT_PS1_SHOWDIRTYSTATE=true $ source ~/.bash_profile
vimに色を付ける
apt-cyg install vim
vi ~/.vimrc
syntax on
vi ~/.bash_profile
alias vi=vim
source ~/.bash_profile
openコマンドを使う
vi ~/.bash_profile
alias open=cygstart
source ~/.bash_profile
mysql install
apt-cyg install mysql mysql -uroot -p -h 127.0.0.1
その他apt-cygおすすめ
apt-cyg install unzip apt-cyg install tree apt-cyg install make