I was wondering if there was a cleaner method to move files into the current directory than this:
mv path/to/file ../current_directory
If I wanted to move a file to the directory above I could go:
mv file ..
Is there a way to represent the current directory?
..
) is directory above, one dot (.
) is current DIR. – You'reAGitForNotUsingGit Jan 30 '17 at 17:39