updated to show lsb release info.
[feisty_meow.git] / scripts / core / i.sh
1 #!/bin/bash
2
3 source "$FEISTY_MEOW_SCRIPTS/core/functions.sh"
4
5 (
6 echo '###############################################################################'
7 echo
8 echo Your user name is $USER on a computer named $(hostname).
9 echo Your machine platform is $(uname -m)
10 if [ $OPERATING_SYSTEM == "UNIX" ]; then
11   lsb_release -a
12 fi
13 echo The time is $(date_stringer | sed -e 's/_/ /g' | sed -e 's/\([0-9][0-9]\) \([0-9][0-9]\)$/:\1:\2/')
14 echo
15 echo '###############################################################################'
16 echo
17 echo You have the following files here:
18 ls -FC
19 echo
20 echo '###############################################################################'
21 echo
22 echo You are sharing the machine with:
23 who
24 echo
25 echo '###############################################################################'
26 echo
27 echo You are running the following processes:
28 . $FEISTY_MEOW_SCRIPTS/users/findme.sh
29 echo
30 echo '###############################################################################'
31 ) | less