March 14, 2010
1. mv command : It is used for file from one directories to another.You have to first enter the file_name(that you want to move) and then the new location of that file. SYNTAX : mv filename new_location rk10@rk-desktop:~/Desktop/log$ ls passwd.txt rk10@rk-desktop:~/Desktop/log$ cd ../ rk10@rk-desktop:~/Desktop$ cd test rk10@rk-desktop:~/Desktop/test$ ls login.txt xyz.txt rk10@rk-desktop:~/Desktop/test$ mv login.txt /home/rk10/Desktop/log rk10@rk-desktop:~/Desktop/test$ [...]
Tagged as:
bash,
bash shell,
bash-commands,
linux commmands,
linux shell,
ubntu terminal
Read the full article →
March 12, 2010
An easy way to learn linux commands-tutorial-2 1. pwd command : To see the current working directory use pwd command. SYNTAX : pwd rk10@rk-desktop:~$ pwd /home/rk10 rk10@rk-desktop:~$ #For more information on cd command just type help cd ,in your bash shell. 2. cp command : It is used for copying the files from one directory [...]
Tagged as:
bash,
bash shell,
bash-commands,
cp/ls/rm commands
Read the full article →