Skip to content

Instantly share code, notes, and snippets.

View Clanwarz's full-sized avatar
🎯
Focusing

Jay V. Clanwarz

🎯
Focusing
View GitHub Profile
@Clanwarz
Clanwarz / .bashrc
Created September 9, 2022 01:19
Default /etc/skel/.bashrc for Ubuntu 20.04
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
@Clanwarz
Clanwarz / bash.bashrc
Created September 8, 2022 23:33
Default /etc/bash.bashrc for Ubuntu 20.04
# System-wide .bashrc file for interactive bash(1) shells.
# To enable the settings / commands in this file for login shells as well,
# this file has to be sourced in /etc/profile.
# If not running interactively, don't do anything
[ -z "$PS1" ] && return
# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.