File Explorer

/etc/skel

This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.

0 dirs
3 files
.bashrc492 B · 28 lines
# .bashrc # Source global definitionsif [ -f /etc/bashrc ]; then	. /etc/bashrcfi # User specific environmentif ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]]then    PATH="$HOME/.local/bin:$HOME/bin:$PATH"fiexport PATH # Uncomment the following line if you don't like systemctl's auto-paging feature:# export SYSTEMD_PAGER= # User specific aliases and functionsif [ -d ~/.bashrc.d ]; then	for rc in ~/.bashrc.d/*; do		if [ -f "$rc" ]; then			. "$rc"		fi	donefi unset rc