#!/bin/bash
echo "Enter 'profile' to see my information, or 'quit' to exit:"
while true; do
read INPUT_STRING
case $INPUT_STRING in
profile)
echo "Name: Chengguang Li"
echo "Interests: fitness, outdoors, football"
echo "Learning: Distributed Systems, AWS, Image Processing"
echo "Dev Devices: MSI on Windows, Macbook Pro M2"
;;
quit)
echo "Goodbye!"
break
;;
*)
echo "Unknown command: $INPUT_STRING"
echo "Enter 'profile' to see my information, or 'quit' to exit:"
;;
esac
done
|
📊 Weekly development breakdown
No activity tracked