change directory of file linux code example
Example 1: move files with in bash
mv path/to/src to/path/destination
Example 2: linux change directory
// change directory in terminal
cd folder_name/subfolder_name
// go up one directory level
cd ..
// back to previous directory
cd -
// return to home directory
cd