I could write mv as
mv()
{
cp $1 $2
rm $1
}
Therefore, in file transfers cp rm and mv could be equal, but there are dissimilarities.
How are the two options different?
I could write mv as
mv()
{
cp $1 $2
rm $1
}
Therefore, in file transfers cp rm and mv could be equal, but there are dissimilarities.
How are the two options different?