Skip to content
Snippets Groups Projects
Commit c5c43cf5 authored by Wouter Deconinck's avatar Wouter Deconinck
Browse files

Only source readables

parent e6d03ac1
No related branches found
No related tags found
1 merge request!145Handle new funny GBD profile.d files
#!/bin/bash #!/bin/bash
for i in /etc/profile.d/*.sh; do for i in /etc/profile.d/*.sh; do
. $i if [ -r $i ]; then
. $i
fi
done done
export PS1='eic-shell> \[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ' export PS1='eic-shell> \[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment