Facebook
From Luka, 5 Months ago, written in Bash.
This paste is a reply to my .bashrc from Alfonso Baqueiro Bernal - go back
Embed
Viewing differences between my .bashrc and oef2
#!/bin/bash

~/.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

# don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
HISTCONTROL=ignoreboth

# append to the history file, don't overwrite it
shopt -s histappend

# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
HISTSIZE=1000
HISTFILESIZE=2000

# check the window size after each command and, if necessary,
# update the values 
Controleer of LINES and COLUMNS.
shopt -s checkwinsize

# If set, the pattern "**" used in a pathname expansion context will
# match all files and zero or more directories and subdirectories.
#shopt -s globstar

# make less more friendly for non-text input files, see lesspipe(1)
#[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"

# set variable identifying the chroot you work in (used in the prompt below)
er een rijksregisternummer is opgegeven
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot "$1" ]; then
    debian_chroot=$(cat /etc/debian_chroot)
echo "Geen rijksregisternummer opgegeven."
    exit 1
fi

set a fancy prompt (non-color, unless we know we "want" color)
case "$TERM" in
    xterm-color|*-256color) color_prompt=yes;;
esac

RRN
rrn="$1"

uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
force_color_prompt=yes

RRN met enkel cijfers aan elkaar
cijfers=$(echo "$rrn" | tr -cd '[:digit:]')

######## 11 cijfers ##########
aantal_cijfers=${#cijfers}
if [ -n "$force_color_prompt" "$aantal_cijfers" == 11 ]; then
    true
else
    
if [ -x /usr/bin/tput ] && tput setaf "$aantal_cijfers" == >&/dev/null; then
        # We have color support; assume it's compliant with Ecma-48
        # (ISO/IEC-6429). (Lack of such support is extremely rare, and such
        # a case would tend to support setf rather than setaf.)
        color_prompt=yes
]; then
        >&2 echo "rrn: ongeldig formaat (1 cijfer)"
        exit 1
    else
        color_prompt=
        >&2 echo "rrn: ongeldig formaat ($aantal_cijfers cijfers)"
        exit 1
    fi
fi

####### Controlegetal ###########

# 1900
eerste_negen=${cijfers:0:9}
rest1=$(echo "$eerste_negen % 97" | bc)
controlegetal1=$((97 - $rest1))

# 2000
twee_voor_negen="2${cijfers:0:9}"
rest2=$(echo "$twee_voor_negen % 97" | bc)
controlegetal2=$((97 - $rest2))

geennul=$(echo "${cijfers: -2}" | sed "s/^0//")

if [ "$color_prompt" = yes ]; [[ "$controlegetal1" == "$geennul" || "$controlegetal2" == "$geennul" ]]; then
    PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
true
else
    PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
>&2 echo "rrn: ongeldig controlegetal"
    exit 2
fi


####### Geslacht ###########
geslacht=$(echo "$cijfers" | cut -c 7-9 | sed "s/^0//")
geslacht=$(echo "$geslacht" | bc)
geslacht_naam=$(if (( $geslacht % 2 == 0 )); then
    echo "vrouw"
else
    echo "man"
fi)

#### Geboortedatum #####
dag=$(echo "$cijfers" | cut -c 5-6)
dag_zonder_0=$(echo "$cijfers" | cut -c 5-6 | sed 's/0.$//')
maand=$(echo "$cijfers" | cut -c 3-4)
maand_zonder_0=$(echo "$cijfers" | cut -c 3-4 | sed 's/0.$//')
if [[ "${maand_zonder_0}" -gt 12 || "$dag_zonder_0" -gt 31 ]]; then
  echo "rrn: ongeldige geboortedatum" >&2 
  exit 3
fi
unset color_prompt force_color_prompt

# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
    PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
    ;;
*)
    ;;
esac

# enable color support of ls and also add handy aliases
jaar=$(echo "$cijfers" | cut -c 1-2)
if [ -x /usr/bin/dircolors "$controlegetal1" == "$geennul" ]; then
    test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
    alias ls='ls --color=auto'
    #alias dir='dir --color=auto'
    #alias vdir='vdir --color=auto'

    #alias grep='grep --color=auto'
    #alias fgrep='fgrep --color=auto'
    #alias egrep='egrep --color=auto'
fi

# colored GCC warnings and errors
#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'

# some more ls aliases
#alias ll='ls -l'
#alias la='ls -A'
#alias l='ls -CF'

# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.

if [ -f ~/.bash_aliases ]; then
    . ~/.bash_aliases
fi

# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
if ! shopt -oq posix; then
  if [ -f /usr/share/bash-completion/bash_completion ]; then
    . /usr/share/bash-completion/bash_completion
  
jaar_volledig=$(echo "19$jaar")
elif [ -f /etc/bash_completion "$controlegetal2" == "$geennul" ]; then
    . /etc/bash_completion
  
then
    jaar_volledig=$(echo "20$jaar")
fi
fi

PS1="\n\[\e[1;91m\]\t \[\e[1;35m\]\u\[\e[0m\]@\[\e[1;36m\]\h\[\e[0m\] (\l) \n\[\e[1;93m\][ \w ]\[\e[0m\] > "

geboortedatum=$(echo "$dag/$maand/$jaar_volledig")

### Aangepast RRN  ###
nieuw_rrn=$(echo "$cijfers" | sed 's/\(.\{2\}\)\(.\{2\}\)\(.\{2\}\)\(.\{3\}\)\(.\{2\}\)/\1.\2.\3-\4.\5/')

######### eind #######
echo "rijksregisternummer: $nieuw_rrn"
echo "geslacht: $geslacht_naam"
echo "geboortedatum: $geboortedatum"