Skip to content
Snippets Groups Projects
.xsession 204 B
Newer Older
Eric Vidal's avatar
Eric Vidal committed
#!/usr/bin/bash

list=( $(ls -1 ${HOME}/.66/conf/boot-user) )
for i in ${list[@]};do
    var=$(<${HOME}/.66/conf/boot-user/${i})
    for j in ${var[@]}; do
		export ${j}
    done
Eric Vidal's avatar
Eric Vidal committed
done

66-all up
sleep 03