From ebd3ff6646414f41d85699f8d32c4cd791c6ebef Mon Sep 17 00:00:00 2001 From: 10sr <8slashes+git@gmail.com> Date: Wed, 22 Aug 2012 15:39:46 +0900 Subject: [PATCH] _open_file -> open_file --- bashrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bashrc b/bashrc index ca70ca3..2b489c4 100755 --- a/bashrc +++ b/bashrc @@ -338,7 +338,7 @@ setclip(){ fi } -_open_file(){ +open_file(){ if iswindows then cmd.exe //c start "" "$@" @@ -360,11 +360,11 @@ _open_file(){ o(){ if test $# -eq 0 then - _open_file . + open_file . else for f in "$@" do - _open_file "$f" + open_file "$f" done fi }