Bash kopiuj plik i zmień nazwę

# Copy and rename at the same time (and can also change path):
cp oldFile newFile

#Rename only:
mv oldName newName
Dark Dotterel