A memorandum for myself.
I'm studying Linux commands, so I'll take a note. Note that the memo command is only the basics of the basics.
Use Cygwin. Please refer to here for the installation method.
Normally, it seems to be a tool that can be manipulated on the Linux screen (screen like that command prompt) where the folder is GUIed with Explorer.
I referred to this page.
cd
Example: $ cd C:
ls
Example: $ ls
mv
Example: $ mv targetFolder C: / destinatedpath
cp
Example: $ cp targetFolder C: / destinatedPath
--Option
---rp
: Copy all folders and files under the copy target folder
clear
Example: $ clear
mkdir
Example: $ mkdir FolderName
touch
Example: $ touch file.txt
remdir
Example: $ rmdir target Folder
rr
Example: $ rm target.txt
pwd
Example: $ pwd
find
Example: $ find -name target.txt
cat
Example: $ cat target.txt
history
Example: $ history
Example: free
Recommended Posts