Linux commands to copy and move the files
mv command to rename a file
codeaft@codeaft:~$ ls a.out codeaft.cpp codeaft.py Documents Fedora.txt Pictures Templates Videos codeaft.c Codeaft.java Desktop Downloads Music Public Ubuntu.txt Weekdays
codeaft@codeaft:~$ mv Fedora.txt FEDORA.TXT codeaft@codeaft:~$ ls a.out codeaft.cpp codeaft.py Documents FEDORA.TXT Pictures Templates Videos codeaft.c Codeaft.java Desktop Downloads Music Public Ubuntu.txt Weekdays
cp command to copy a file
codeaft@codeaft:~$ cp FEDORA.TXT /home/codeaft/Documents/ codeaft@codeaft:~$ ls $cat /home/codeaft/Documents/ FEDORA.TXT
cp and mv commands to copy and move the files
codeaft@codeaft:~$ mkdir Linux codeaft@codeaft:~$ touch Ubuntu.txt Fedora.txt codeaft@codeaft:~$ cp Ubuntu.txt Fedora.txt codeaft@codeaft:~$ ls a.out Codeaft.java Documents Linux Public Videos codeaft.c codeaft.py Downloads Music Templates Weekdays codeaft.cpp Desktop Fedora.txt Pictures Ubuntu.txt codeaft@codeaft:~$ cp Ubuntu.txt /home/codeaft/Linux/ codeaft@codeaft:~$ ls $cat /home/codeaft/Linux/ Ubuntu.txt codeaft@codeaft:~$ mv Fedora.txt /home/codeaft/Linux/ codeaft@codeaft:~$ ls $cat /home/codeaft/Linux/ Fedora.txt Ubuntu.txt codeaft@codeaft:~$ ls a.out codeaft.cpp codeaft.py Documents Linux Pictures Templates Videos codeaft.c Codeaft.java Desktop Downloads Music Public Ubuntu.txt Weekdays codeaft@codeaft:~$ cd Linux/ codeaft@codeaft:~/Linux$ ls Fedora.txt Ubuntu.txt
Comments and Reactions