RYD23D234RT7AY2B5W3N6NKDOJRJN55NQQKKT23UMTJUQ5MLQFXAC #!/usr/bin/fish# the purpose of this script is to generate the list of functions that# have been implemented in bash but I want accessible in fish## all it does is create auto-loading function scripts that call the bash functionset FUNCS cl croot fetch glog glogl lf ll pull push repotype root rstat rvmkdir $HOME/.config/fish/functions -pfor func in $FUNCSset O_FILE $HOME/.config/fish/functions/"$func".fishprintf "function $func\n" > $O_FILEprintf "\tbash -i -c \"$func \$argv\"\n" >> $O_FILEprintf "end\n" >> $O_FILEend