add capability to bash export

This commit is contained in:
Jichao Ouyang 2014-12-08 14:39:28 +08:00 committed by Bruno Pinto
parent fa024507da
commit c7d55526ec

View File

@ -0,0 +1,5 @@
function export
set var1 (echo $argv | cut -f1 -d=)
set var2 (echo $argv | cut -f2 -d=)
set -x -g $var1 $var2
end