This website works better with JavaScript.
Home
Explore
Help
Sign In
10sr
/
dotfiles-mirror
mirror of
https://github.com/10sr/dotfiles.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
Browse Source
_open_file -> open_file
pull/1/head
10sr
12 years ago
parent
6822a3c5ee
commit
ebd3ff6646
1 changed files
with
3 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-3
bashrc
+ 3
- 3
bashrc
View File
@@ -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
}
Write
Preview
Loading…
Cancel
Save