Commit from Office

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.
This commit is contained in:
Harish.K
2013-12-05 11:23:41 +05:30
parent a3d6f31e2e
commit 941df54755
21 changed files with 5217 additions and 6 deletions
+16
View File
@@ -0,0 +1,16 @@
#!/bin/bash
NPM_DIR=~/node_modules;
TARGET_BIN_PATH=~/.local/bin;
PACKAGES_WITH_BIN=$( find "$NPM_DIR" -name 'bin' );
cd $TARGET_BIN_PATH;
for i in $PACKAGES_WITH_BIN;do
echo "module: $i";
commands=$(ls $i);
echo "Commands: $commands";
for commandName in $commands;do
ln -s "$i/$commandName" "./$commandName";
done
done