rudimentary java library beginning. cleaned up scripts quite
[feisty_meow.git] / scripts / core / i.sh
1 #!/bin/bash
2
3 (
4 echo '###############################################################################'
5 echo
6 echo Your user name is $USER on a computer named $(hostname).
7 echo Your machine platform is $(uname -m).
8 echo The time is $(date_stringer | sed -e 's/_/ /g' | sed -e 's/\([0-9][0-9]\) \([0-9][0-9]\)$/:\1:\2/')
9 echo
10 echo '###############################################################################'
11 echo
12 echo You have the following files here:
13 ls -FC
14 echo
15 echo '###############################################################################'
16 echo
17 echo You are sharing the machine with:
18 who
19 echo
20 echo '###############################################################################'
21 echo
22 echo You are running the following processes:
23 . $FEISTY_MEOW_SCRIPTS/users/findme.sh
24 echo
25 echo '###############################################################################'
26 ) | less