first check-in of feisty meow codebase. many things broken still due to recent
[feisty_meow.git] / scripts / core / i.sh
1 #!/bin/bash
2
3 (
4 source $SHELLDIR/core/date_stringer.sh
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 echo The time is $(date_stringer | sed -e 's/_/ /g' | sed -e 's/\([0-9][0-9]\) \([0-9][0-9]\)$/:\1:\2/')
11 echo
12 echo '###############################################################################'
13 echo
14 echo You have the following files here:
15 ls -FC
16 echo
17 echo '###############################################################################'
18 echo
19 echo You are sharing the machine with:
20 who
21 echo
22 echo '###############################################################################'
23 echo
24 echo You are running the following processes:
25 . $SHELLDIR/users/findme.sh
26 echo
27 echo '###############################################################################'
28 ) | less