30 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
export PATH=/srv/bin/primary_tech:/srv/bin/primary_tech/sbin:/srv/bin:$PATH:/usr/sbin:/sbin
 | 
						|
export PATH=$PATH:/srv/bin/active_bun
 | 
						|
export PATH=$PATH:/srv/bin/active_deno
 | 
						|
export PATH=$PATH:/srv/bin/active_golang
 | 
						|
export PATH=$PATH:/srv/bin/active_node
 | 
						|
export PATH=$PATH:/srv/bin/active_openjdk
 | 
						|
export PATH=$PATH:/srv/bin/active_php
 | 
						|
export PATH=$PATH:/srv/bin/active_python
 | 
						|
export PATH=$PATH:/srv/bin/active_ruby
 | 
						|
 | 
						|
# Ruby related variables
 | 
						|
export BUNDLE_PATH=/srv/tmp/cache
 | 
						|
export GEM_HOME=/srv/.gem
 | 
						|
 | 
						|
# Use only if the shell is opened via SSH
 | 
						|
if [ -n "$SSH_TTY" ]; then
 | 
						|
    export PS1="\[\033[38;5;2m\]\u@\[$(tput sgr0)\]\[\033[38;5;3m\]\h\[$(tput sgr0)\]\[\033[38;5;15m\] \[$(tput sgr0)\]\[$(tput sgr0)\]\[\033[38;5;67m\]\w\[$(tput sgr0)\]\[\033[38;5;15m\] \[$(tput sgr0)\]\[\033[38;5;40m\]\\$\[$(tput sgr0)\]\[\033[38;5;15m\] \[$(tput sgr0)\]"
 | 
						|
 | 
						|
    alias ll='ls -alh'
 | 
						|
 | 
						|
    if [ -e /opt/etc/bashrc/ ]; then
 | 
						|
        . /opt/etc/bashrc/*
 | 
						|
    fi
 | 
						|
fi
 | 
						|
 | 
						|
# Default path
 | 
						|
cd /srv
 | 
						|
 | 
						|
# DO NOT REWRITE ME
 | 
						|
# This is information for initialization script. If it finds the line above, you can edit this file as you wish and changes remain
 |