How to create Template file which create a new file having file creation date and time?
In /Home/Templates directory, we can put template file. So we can create new file by right clicking. Is there any way we can create new file which have current Date and Time. Something like log file. Which have date and Time as very first line. Or in the name of file.
18.04 templates
add a comment |
In /Home/Templates directory, we can put template file. So we can create new file by right clicking. Is there any way we can create new file which have current Date and Time. Something like log file. Which have date and Time as very first line. Or in the name of file.
18.04 templates
This is slightly similar (at least the second part — having the date in the name of the file).
– aplaice
Jan 21 at 17:46
Creating a file having date in name is can be done by touch command. But here I want it as Template.
– Deepak Gautama
Jan 31 at 12:24
add a comment |
In /Home/Templates directory, we can put template file. So we can create new file by right clicking. Is there any way we can create new file which have current Date and Time. Something like log file. Which have date and Time as very first line. Or in the name of file.
18.04 templates
In /Home/Templates directory, we can put template file. So we can create new file by right clicking. Is there any way we can create new file which have current Date and Time. Something like log file. Which have date and Time as very first line. Or in the name of file.
18.04 templates
18.04 templates
edited Jan 21 at 16:33
Deepak Gautama
asked Jan 20 at 13:52
Deepak GautamaDeepak Gautama
64
64
This is slightly similar (at least the second part — having the date in the name of the file).
– aplaice
Jan 21 at 17:46
Creating a file having date in name is can be done by touch command. But here I want it as Template.
– Deepak Gautama
Jan 31 at 12:24
add a comment |
This is slightly similar (at least the second part — having the date in the name of the file).
– aplaice
Jan 21 at 17:46
Creating a file having date in name is can be done by touch command. But here I want it as Template.
– Deepak Gautama
Jan 31 at 12:24
This is slightly similar (at least the second part — having the date in the name of the file).
– aplaice
Jan 21 at 17:46
This is slightly similar (at least the second part — having the date in the name of the file).
– aplaice
Jan 21 at 17:46
Creating a file having date in name is can be done by touch command. But here I want it as Template.
– Deepak Gautama
Jan 31 at 12:24
Creating a file having date in name is can be done by touch command. But here I want it as Template.
– Deepak Gautama
Jan 31 at 12:24
add a comment |
1 Answer
1
active
oldest
votes
This is not the solution for which I am looking for. But certainly good one.
Step-I
Create a file and put following command
#!/bin/bash
touch $(date +"%Y-%b-%d_%H:%M:%S")
Mark file for execution
chmod +x file
Or Right click on file and select properties. Under Permission tab, tick Allow executing file as program
Step-II
- Install
dconf-editor
and run it. - Move to
org/gnome/nautilus/preferences
. - Right click on
executable-text-activation
. - Select launch from drop down menu.
- Install
Step-III
- Put that file in Templates folder.
Step-IV
- At any location (e.g. Desktop or Documents etc.), just right click and create that file there.
- Now double click it, it will create file with Date&Time as name.
Bash command for creating file with Name as DateTime and also as first line
#!/bin/bash
echo $(date +"%Y-%b-%d_%H:%M:%S") > $(date +"%Y-%b-%d_%H:%M:%S")
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1111375%2fhow-to-create-template-file-which-create-a-new-file-having-file-creation-date-an%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
This is not the solution for which I am looking for. But certainly good one.
Step-I
Create a file and put following command
#!/bin/bash
touch $(date +"%Y-%b-%d_%H:%M:%S")
Mark file for execution
chmod +x file
Or Right click on file and select properties. Under Permission tab, tick Allow executing file as program
Step-II
- Install
dconf-editor
and run it. - Move to
org/gnome/nautilus/preferences
. - Right click on
executable-text-activation
. - Select launch from drop down menu.
- Install
Step-III
- Put that file in Templates folder.
Step-IV
- At any location (e.g. Desktop or Documents etc.), just right click and create that file there.
- Now double click it, it will create file with Date&Time as name.
Bash command for creating file with Name as DateTime and also as first line
#!/bin/bash
echo $(date +"%Y-%b-%d_%H:%M:%S") > $(date +"%Y-%b-%d_%H:%M:%S")
add a comment |
This is not the solution for which I am looking for. But certainly good one.
Step-I
Create a file and put following command
#!/bin/bash
touch $(date +"%Y-%b-%d_%H:%M:%S")
Mark file for execution
chmod +x file
Or Right click on file and select properties. Under Permission tab, tick Allow executing file as program
Step-II
- Install
dconf-editor
and run it. - Move to
org/gnome/nautilus/preferences
. - Right click on
executable-text-activation
. - Select launch from drop down menu.
- Install
Step-III
- Put that file in Templates folder.
Step-IV
- At any location (e.g. Desktop or Documents etc.), just right click and create that file there.
- Now double click it, it will create file with Date&Time as name.
Bash command for creating file with Name as DateTime and also as first line
#!/bin/bash
echo $(date +"%Y-%b-%d_%H:%M:%S") > $(date +"%Y-%b-%d_%H:%M:%S")
add a comment |
This is not the solution for which I am looking for. But certainly good one.
Step-I
Create a file and put following command
#!/bin/bash
touch $(date +"%Y-%b-%d_%H:%M:%S")
Mark file for execution
chmod +x file
Or Right click on file and select properties. Under Permission tab, tick Allow executing file as program
Step-II
- Install
dconf-editor
and run it. - Move to
org/gnome/nautilus/preferences
. - Right click on
executable-text-activation
. - Select launch from drop down menu.
- Install
Step-III
- Put that file in Templates folder.
Step-IV
- At any location (e.g. Desktop or Documents etc.), just right click and create that file there.
- Now double click it, it will create file with Date&Time as name.
Bash command for creating file with Name as DateTime and also as first line
#!/bin/bash
echo $(date +"%Y-%b-%d_%H:%M:%S") > $(date +"%Y-%b-%d_%H:%M:%S")
This is not the solution for which I am looking for. But certainly good one.
Step-I
Create a file and put following command
#!/bin/bash
touch $(date +"%Y-%b-%d_%H:%M:%S")
Mark file for execution
chmod +x file
Or Right click on file and select properties. Under Permission tab, tick Allow executing file as program
Step-II
- Install
dconf-editor
and run it. - Move to
org/gnome/nautilus/preferences
. - Right click on
executable-text-activation
. - Select launch from drop down menu.
- Install
Step-III
- Put that file in Templates folder.
Step-IV
- At any location (e.g. Desktop or Documents etc.), just right click and create that file there.
- Now double click it, it will create file with Date&Time as name.
Bash command for creating file with Name as DateTime and also as first line
#!/bin/bash
echo $(date +"%Y-%b-%d_%H:%M:%S") > $(date +"%Y-%b-%d_%H:%M:%S")
edited Jan 31 at 20:11
pomsky
31.2k1194127
31.2k1194127
answered Jan 31 at 12:20
Deepak GautamaDeepak Gautama
64
64
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1111375%2fhow-to-create-template-file-which-create-a-new-file-having-file-creation-date-an%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
This is slightly similar (at least the second part — having the date in the name of the file).
– aplaice
Jan 21 at 17:46
Creating a file having date in name is can be done by touch command. But here I want it as Template.
– Deepak Gautama
Jan 31 at 12:24