Skip to content
Snippets Groups Projects
.xsession 196 B
Newer Older
  • Learn to ignore specific revisions
  • 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