Manage file and directory in ubuntu from terminal
Friday, June 27, 2014
One of my teacher said me, I will be a actual developer when maximum terminal's command have to known. Form that day I like to know and work to do in terminal on Ubuntu. And now I feel best uses of Linux-Ubuntu. This tip will explain how to manage file/directory on Ubuntu from terminal. Although its a basic knowledge but you can not avoid it if you want to be a terminal command user in Ubuntu.
Open a directory:
xdg-open <directory pathe>
Make directory:
mkdir <directory name>
Rename file/directory name:
mv <old directory name> <new directory name>
Create a file:
sudo touch <file name>
Open file:
sudo gedit <file name>
Post a Comment