Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
eic_container
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
containers
eic_container
Merge requests
!81
Improved environment setup
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Improved environment setup
improve_env
into
master
Overview
0
Commits
6
Pipelines
0
Changes
1
Merged
Sylvester Joosten
requested to merge
improve_env
into
master
3 years ago
Overview
0
Commits
6
Pipelines
0
Changes
1
Expand
Nice singularity prompt
Use ls colors
More transparent environment setup (copy scripts instead of writing them in the Dockerfile)
Double-check all still works
Edited
3 years ago
by
Sylvester Joosten
0
0
Merge request reports
Viewing commit
dd2ec404
Prev
Next
Show latest version
1 file
+
17
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
dd2ec404
only export the helper functions for bash
· dd2ec404
Sylvester Joosten
authored
3 years ago
containers/jug/eic-env.sh
+
17
−
6
Options
@@ -8,11 +8,22 @@ export PS1='eic-shell> \[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[
export
LS_COLORS
=
'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33'
export
GREP_OPTIONS
=
'--color=auto'
## redefine ls and less as functions, as this is something we
## can import into our plain bash --norc --noprofile session
## (aliases cannot be transferred to a child shell)
function
ls
{
/bin/ls
--color
=
auto
}
/bin/ls
--color
=
auto
}
function
less
{
/usr/bin/less
-RAW_CONTROL_CHARS
}
export
-f
ls
export
-f
less
/usr/bin/less
-R
}
MYSHELL
=
$(
ps
-p
$$
|
awk
'{print($4);}'
|
tail
-n1
)
## only export the functions for bash, as this does not work
## in all shells and we only care about bash here. Note that
## the singularity startup runs in plain sh which requires the
## if statement
if
[
"
$MYSHELL
"
==
"bash"
]
;
then
export
-f
ls
export
-f
less
fi
unset
MYSHELL
Loading