Changes between Initial Version and Version 1 of Ticket #70680, comment 9


Ignore:
Timestamp:
Sep 3, 2024, 2:20:45 PM (2 weeks ago)
Author:
RobK88
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #70680, comment 9

    initial v1  
    1515bash-3.2#
    1616
     17bash-3.2# cat /etc/bashrc
     18# System-wide .bashrc file for interactive bash(1) shells.
     19if [ -z "$PS1" ]; then
     20   return
     21fi
     22
     23PS1='\h:\W \u\$ '
     24# Make bash check its window size after a process completes
     25shopt -s checkwinsize
     26
     27[ -r "/etc/bashrc_$TERM_PROGRAM" ] && . "/etc/bashrc_$TERM_PROGRAM"
     28
    1729
    1830bash-3.2# cat ~/.bash_profile