Created
November 22, 2018 12:49
-
-
Save Krucamper/1f8cdbaa92b896cb26b9777f96a0e3c8 to your computer and use it in GitHub Desktop.
command linux cp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cp [option] [File หรือ Directory ต้นทาง] [File หรือ Directory ปลายทาง] | |
/** คัดลอกfile file1.txt ไปที่ file2.txt **/ | |
cp file1.txt file2.txt | |
/** ทำการคัดลอก file ทั้งหมดของ exam1 ไปที่ exam2 **/ | |
cp -rv exam1 exam2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment