mirror of
https://github.com/harish2704/dotFiles.git
synced 2026-09-10 15:21:09 +00:00
Vim: open current snippet file; some java things for android development Bins: update commands provided by npm packages in home dir (By making symlinks to ~/.local/bin) my[editor] open file with format fname:123:* configs: spacefm config. openbox config.
7 lines
150 B
Bash
Executable File
7 lines
150 B
Bash
Executable File
#!/bin/bash
|
|
|
|
fname=$( echo $1 | sed 's/\(.*\):\(.*\):.*/\1/g' );
|
|
lineNo=$( echo $1 | sed 's/\(.*\):\(.*\):.*/\2/g' );
|
|
exec geany $fname -l $lineNo &
|
|
|