¿Qué hace el siguiente script cuando se ejecuta con dos argumentos, por ejemplo, ./script.sh file1.txt file2.txt?
#!/bin/bash
mv "$1" "$2"
¿Qué hace el siguiente script cuando se ejecuta con dos argumentos, por ejemplo, ./script.sh file1.txt file2.txt?
#!/bin/bash
mv "$1" "$2"