mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-03 19:04:40 +01:00
9 lines
146 B
Bash
Executable file
9 lines
146 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
echo "Dropping $1!"
|
|
mv "$HOME/inventory/$1" .
|
|
|
|
if [ "$#" -eq 3 ]; then
|
|
echo "x = $2" > "$1"
|
|
echo "y = $3" >> "$1"
|
|
fi
|