8 lines
70 B
Bash
Executable File
8 lines
70 B
Bash
Executable File
#!/bin/sh
|
|
from=$1
|
|
to=$2
|
|
|
|
if test -e "$from"; then
|
|
mv $from $to
|
|
fi
|