To create a file from terminal I type the following...
$ touch filename.py
To open the file I just created from terminal, I then type...
$ open filename.py
I'm curious to know if there is a terminal command that does both...create and then open (I'm super lazy).
This is as lazy as one can get:
Simplest way to do this is
Example
On a Mac to create a lazytouch function to create and open a file in one line you have to edit .bashrc. You might have to first create it. Beware if you are a novice programmer. Some of these commands might require you to prepend sudo for permission to create and save. Enter these commands in terminal.
Enter this profile in .bash_profile to check for .bashrc
Remember to save .bash_profile. Then in bash do this.
Enter this text in the .bashrc
Remember to save .bashrc
Now you can cd to any folder then create and open a file with one line.
you can use the following to create a file named "filename.py", insert "Hello World" into the file and then open the file,
What I do when I want to create a file, edit it and just save it is I type
vim
at the terminal. vim is a text editor. If you just type invim
you would see the text editor.But if you type for instance
vim example.txt
you open vim and from then on you are working in the file you created. The file does not get saved until you say so. So by pressingi
you enter the edit mode of vim. Allowing you to put text in the file. If you want to save just enter escape followed by:w
, meaning you are saving the file with the name you have it to it, so for this example it would be example.txt. After you saved it, everything you type after pressing Esc is shown left down in the screen, simple type:q
to quite it.If you realise you do not really want to save the file you can just type
:q!
and if you were currently in the editing mode, meaning you were typing something, you just press Esc once followed by:q!
.So short summary:
vim example.txt
(opens the editor if saved it will use the given name)s
(will enable edit mode, you can write stuff):w
(save the file):q
(quit the file, only usable when saved!):q!
(discard the save and just exit the file)in .bashrc
then type