Q. I'm new to Linux and installed CentOS on my Laptop. How do I create a file from bash prompt without using GUI tools?
A. Linux / UNIX offer many command line tools and text editors for creating text files. You can use vi or JOE text editor. It is a terminal-based text editor for Linux/Unix systems, available under the GPL. It is designed to be easy to use.
Create a Text File using cat command
To create a text file called foo.txt, enter:
$ cat > foo.txt
Output:
This is a test.
Hello world!
press CTRL+D to save fileTo display file contents, type
$ cat foot.txt
Create a Text File using joe text editor
JOE is text editor. To create a file called foo.txt, type:
$ joe -help foo.txt
You will see help menu on screen. Next type something. To save the file and leave joe, by typing ^KX (press CTRL+K+X).
Create a Text File using vi / vim text editor
vi / vim is another text editor. To create a file called bar.txt, type:
$ vi bar.txt
Press 'i' to insert new text. To save the file and leave vi, type ESC+:+x (press ESC key, type : followed by x and [enter] key).
Further readings
- Learn more about joe here : Introduction to the Joe Text Editor
- Learn more about vi here : Download mastering the VI editor pdf version.
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop













{ 35 comments… read them below or add one }
You can also use touch command to create empty files:
touch foobar.txt
Pafcio,
thanks for pointing out touch command!
echo ‘ This is a multiline
text file created
from the bash shell
using echo command’ > multiline.txt
i want create a text file. pls could you help me…
$ cat foot.txt
Thanks a lot! It helps me.
Thank you very much! all of you
Excellent, cause I just used it at work, and it worked and helped me.
Thanks
Detailed information but would appreciate if someone can upload the solution for cat command as in executing or running the vi program. I am writing a finction in the vi and want to execute it outside the vi on the bash shell.
Thx- Nitish Anand
thanks guys. i do try cat, it works perfectly.
but in vi mode i’m not able to save & exit the file. i had to exit using ctrl+z & the file was not saved.
please help me. mail on nehra13@gmail.com
Have u tried using:-
!wq for save and exit VI
!w to just exit.
have two files, ‘file1′ and ‘file2′.
file1 has:
1234
4567
6789
file2 has:
abcd
efgh
ijkl
would like to combine into one like:
1234 | abcd
4567 | efgh
6789 | ijkl
Please give direction.
Thanks
Hi,
@chakjoy
here is an solution. Using arrays:
—
#!/bin/bash
declare -a ARRAY1
declare -a ARRAY2
let count=0
let count1=0
while read LINE
do
ARRAY1[$count]=$LINE
((count++))
done < file1.txt
while read LINE
do
ARRAY2[$count1]=$LINE
((count1++))
done < file2.txt
for((i=0; i<${#ARRAY1[@]};i++));do
echo "${ARRAY1[${i}]} | ${ARRAY2[${i}]}"
done
—
I hope this help.
Hi chakjoy,
Did u manage to resolve your problem? Try the folling link if thats what you meant:-
http://www.linuxsa.org.au/tips/command-pipelines.html
OR
cd /var/log && ls -al
this switches to the /var/log directory if the directory change was sucessfuly it will then list the contents of that directory.
You can also list the contents of a directory without leaving your current location..
ls -al /var/log
Would list the contents of /var/log no matter your current location in the directory tree.
You can also use | to send the output of one command to the input of another..
mount | column -t
Show mount points in a column format
ls -al | grep *.jpg
List the contents of a directory buit only show files ending in .jpg
ps aux | grep X11
List processes but only show processes containing X11 > and list.txt
Will list the contents of the /var/log directory and save it in the file list.txt
hope this helps
====================
You can chain copmmands together using &&
cd /var/log && ls -al
this swithces to the /var/log directory if the directory change was sucessfuly it will then list the contents o fhte directory.
just to add to that, you can likewise chain commands together with the || operator (OR operator, not to be confused with a pipe | )
Code:
$ cd /mnt || cd /varthis would attempt to change to the /mnt directory. If it could not it would then switch to the /var directory. If the cd /mnt command was successfull then it would stop. Similarly,
Code:
$ cd /blah || cd /homeit’s probably safe to say there is no /blah directory on your computer so typing this command would attempt to change to a non-existant directory, fail, and consequently change to /home
have fun!
There is so much to learn when you get inside of linux, for example, VI is not the easier text editor but it rocks xD
That’s good I am new Linuxer , now I am studying it .
Thanks.
Thx a lot guys.
I am also a newbie to Linux and it helps a lot!
how to chkdsk in linux cmd mode
how to check in all disk drive in linux command mode
how to install other software in linux command mode
please i am not able to understand to do program with echo command. please tell mr steps from starting….
how to save lines in a file? how to execute ?
how to save lines in a file at unix? how to execute?
Just $ > filename will do the same, manily creating a empty file named “filename”
Go ahead type “> test” and see for your self
What is the main difference between touch & vi commnd?
Could someone help me understand what this means?
Save the information that you have read from the keyboard into a file
good job !!!
how to search the empty file in linux …
For that which command use ???
please tell me …. help me …..
hi guyz,
mu /dev/hdc had 2.7 G and its now 100%. Need to clear it.
Please help.
I am trying to maintain a list of “ROMS” be it NDS, or MAME, no matter.
Instead of accessing each page on a website, is it possible to use cat to look for say; title” … ” within .aspx on the website and copy it to local txt file ? I have been using ..
cat wordlist/* | tr -cs A-Za-z ’12′ | tr A-Z a-z | sort | uniq > wordlist/masterlist.txt to merge numerous txt files into one, have them sort, and no repeats. something like this to be able to input the website start & end page and where to save the roms list.. there doesn’t really seem to be any 1 site that has a complete & accurate list. I an not trying to circumvent anything to get to the roms, I merely wish to be able to goto a webpage, enter in the variables, run a script to gather the list from the site, then after I have done this to a few sites run the above quoted, to merge the different sites into 1 ( hopefully ) accurate list so I know the names & numbers of the roms for each list.
Nice job.. thanxxx… :D
hey guys, how can I concatenate an echo command & DATE to only one line ..
like:
echo “The date is: ” && date >> file.txt
but this command will display text “The date is: ” and insert the date into the file.txt
the output I want is
“The date is 07-12-12.”
to the file.txt
help pls..
Very helpful steps for a fresher in C/C++
pls send me how to create log file(tape wirrten is normal file, normal file format only not tar file format)
i want create “example.com” file in this dir:
etc/apache2/
plz help me…
tnx
How do you edit the file you created ?