URI: 
       Work_Desk.sh - dotg - Day Of The GrParazyd
  HTML git clone git://bitreich.org/dotg git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/dotg
   DIR Log
   DIR Files
   DIR Refs
   DIR Tags
       ---
       Work_Desk.sh (352B)
       ---
            1 specific_workdesk() {
            2         item="$1"
            3 
            4         case "$item" in
            5                 Smashed_Macbook|Unlocked_Macbook)
            6                         if [ -f "$workdesk/Locked_computer" ]; then
            7                                 _msg "You swap the locked computer with the $item."
            8                                 mv "$workdesk/Locked_computer" "$inventory"
            9                         else
           10                                 _msg "You place the $item on the work desk."
           11                         fi
           12                         mv "$inventory/$item" "$workdesk"
           13                         ;;
           14         esac
           15 }