Como posso mover um arquivo para um diretório?

0

Eu só quero ler no teclado o nome do arquivo e movê-lo para outro diretório.

Eu tenho isso em mente:

ls

read a // the name of the file

pwd

read b //the name of the directory where I want to move the file or  the path :-?

mv $a $b

Alguém pode me corrigir? Como devo usar o comando mv neste caso?

    
por Ciobanu Rares 16.05.2015 / 01:59

1 resposta

-1

neste caso, simplesmente mv filename path/to/somewhere , mas, em geral, você provavelmente precisará de uma introdução ao shell básico. Isso parece razoável:

link

E mv e amigos em particular:

link

    
por user3113723 16.05.2015 / 02:36