rin/rin-profile
yakumo.izuru 1e25a0dba0 Hell's Traffic Accident
git-svn-id: file:///srv/svn/repo/rin/trunk@4 5f6c6692-7da8-c640-9b4f-fb22b0af4e5b
2025-04-21 03:00:20 +00:00

20 lines
361 B
Bash
Executable File

#!/bin/sh
# $YakumoLabs$
case $1 in
-h|--help)
echo "usage: $0 [-l] [-u profile-name]"
exit 0
;;
-l|--list)
echo "List of available profiles"
find "${HOME}/.mblaze" -name "profile-*" -type f
;;
-u|--use)
echo "Using profile $2"
ln -sf "${HOME}/.mblaze/profile-$2" "${HOME}/.mblaze/profile"
;;
*)
echo "Unrecognized switch $1"
;;
esac