このサイトはJavaScriptを使用しています
ホーム
エクスプローラー
ヘルプ
サインイン
10sr
/
dotfiles-mirror
ミラー元
https://github.com/10sr/dotfiles.git
ウォッチ
1
スター
0
フォーク
0
コード
課題
0
リリース
0
Wiki
アクティビティ
ソースを参照
cd use pushd
pull/1/head
10sr
12年前
親
75f33dc0d5
コミット
d027d082cd
1個のファイルの変更
、
14行の追加
、
0行の削除
分割表示
差分オプション
統計情報を表示
Patchファイルをダウンロード
Diffファイルをダウンロード
+14
-0
bashrc
+ 14
- 0
bashrc
ファイルの表示
@@ -202,6 +202,20 @@ then
|| complete -o default -o nospace -F _git g
fi
cd(){
if test $# -eq 0
then
pushd ~/
elif test $1 = -
then
local pwd="$PWD"
popd
pushd -n "$pwd" # stack last dir
else
pushd "$@"
fi
}
input(){
local foo
stty -echo
書き込み
プレビュー
読み込み中…
キャンセル
保存