File Operations by DaveChild
About This Content
Command-line file operations for linux / bash.
This content, File Operations, was created on 27th October, 2011 and was last updated on 22nd November, 2011.
Tags
bash, commandline, files, linux
File Operations appears on:
File Operations
|
touch file1 Create file1
|
|
cat file1 file2 Concatenate files and output
|
|
less file1 View and paginate file1
|
|
file file1 Get type of file1
|
|
cp file1 file2 Copy file1 to file2
|
|
mv file1 file2 Move file1 to file2
|
|
rm file1 Delete file1
|
|
head file1 Show first 10 lines of file1
|
|
tail file1 Show last 10 lines of file1
|
|
tail -f file1 Output last lines of file1 as it changes
|
Comments
No comments yet. Add yours below!
Add a Comment
You must be logged in to post a comment. Please log in using the form at the top right of the page.

