How to use a Bash Script to move and rename files with grep
Hi I an FTP folder called Input where I get sent files which look something like this:
"Guide to Iceland _ Chen-ping Wang itinerary T-987654987.pdf"
"Guide to Iceland _ T-123654875 Chen-ping Wang itinerary.pdf"
Basicly the description of the file can be different but it always includes "T-" and some numbers.
I need to create a bash script that copies the file to the folder ../Output and renames the file so the "T-" and the numbers comes first, and then rest of the filename.
Example: "T-123654875 - Guide to Iceland _ Chen-ping Wang itinerary.pdf"
I intended to use Grep to get the name right.
Searching for (.+)(T-d+) and replacing it with $2 - $1
But I can't get it to work right.
linux shell-script grep rename
New contributor
Þorgeir Valur Ellertsson is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
Hi I an FTP folder called Input where I get sent files which look something like this:
"Guide to Iceland _ Chen-ping Wang itinerary T-987654987.pdf"
"Guide to Iceland _ T-123654875 Chen-ping Wang itinerary.pdf"
Basicly the description of the file can be different but it always includes "T-" and some numbers.
I need to create a bash script that copies the file to the folder ../Output and renames the file so the "T-" and the numbers comes first, and then rest of the filename.
Example: "T-123654875 - Guide to Iceland _ Chen-ping Wang itinerary.pdf"
I intended to use Grep to get the name right.
Searching for (.+)(T-d+) and replacing it with $2 - $1
But I can't get it to work right.
linux shell-script grep rename
New contributor
Þorgeir Valur Ellertsson is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1
Does your system have the perl-basedrename/prenamecommand?
– steeldriver
32 mins ago
I am running this on Macintosh and intended to use the move mv command to rename it.
– Þorgeir Valur Ellertsson
5 mins ago
add a comment |
Hi I an FTP folder called Input where I get sent files which look something like this:
"Guide to Iceland _ Chen-ping Wang itinerary T-987654987.pdf"
"Guide to Iceland _ T-123654875 Chen-ping Wang itinerary.pdf"
Basicly the description of the file can be different but it always includes "T-" and some numbers.
I need to create a bash script that copies the file to the folder ../Output and renames the file so the "T-" and the numbers comes first, and then rest of the filename.
Example: "T-123654875 - Guide to Iceland _ Chen-ping Wang itinerary.pdf"
I intended to use Grep to get the name right.
Searching for (.+)(T-d+) and replacing it with $2 - $1
But I can't get it to work right.
linux shell-script grep rename
New contributor
Þorgeir Valur Ellertsson is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Hi I an FTP folder called Input where I get sent files which look something like this:
"Guide to Iceland _ Chen-ping Wang itinerary T-987654987.pdf"
"Guide to Iceland _ T-123654875 Chen-ping Wang itinerary.pdf"
Basicly the description of the file can be different but it always includes "T-" and some numbers.
I need to create a bash script that copies the file to the folder ../Output and renames the file so the "T-" and the numbers comes first, and then rest of the filename.
Example: "T-123654875 - Guide to Iceland _ Chen-ping Wang itinerary.pdf"
I intended to use Grep to get the name right.
Searching for (.+)(T-d+) and replacing it with $2 - $1
But I can't get it to work right.
linux shell-script grep rename
linux shell-script grep rename
New contributor
Þorgeir Valur Ellertsson is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Þorgeir Valur Ellertsson is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited 6 mins ago
Þorgeir Valur Ellertsson
New contributor
Þorgeir Valur Ellertsson is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 43 mins ago
Þorgeir Valur EllertssonÞorgeir Valur Ellertsson
11
11
New contributor
Þorgeir Valur Ellertsson is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Þorgeir Valur Ellertsson is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Þorgeir Valur Ellertsson is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1
Does your system have the perl-basedrename/prenamecommand?
– steeldriver
32 mins ago
I am running this on Macintosh and intended to use the move mv command to rename it.
– Þorgeir Valur Ellertsson
5 mins ago
add a comment |
1
Does your system have the perl-basedrename/prenamecommand?
– steeldriver
32 mins ago
I am running this on Macintosh and intended to use the move mv command to rename it.
– Þorgeir Valur Ellertsson
5 mins ago
1
1
Does your system have the perl-based
rename / prename command?– steeldriver
32 mins ago
Does your system have the perl-based
rename / prename command?– steeldriver
32 mins ago
I am running this on Macintosh and intended to use the move mv command to rename it.
– Þorgeir Valur Ellertsson
5 mins ago
I am running this on Macintosh and intended to use the move mv command to rename it.
– Þorgeir Valur Ellertsson
5 mins ago
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
});
}
});
Þorgeir Valur Ellertsson is a new contributor. Be nice, and check out our Code of Conduct.
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%2funix.stackexchange.com%2fquestions%2f493845%2fhow-to-use-a-bash-script-to-move-and-rename-files-with-grep%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Þorgeir Valur Ellertsson is a new contributor. Be nice, and check out our Code of Conduct.
Þorgeir Valur Ellertsson is a new contributor. Be nice, and check out our Code of Conduct.
Þorgeir Valur Ellertsson is a new contributor. Be nice, and check out our Code of Conduct.
Þorgeir Valur Ellertsson is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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%2funix.stackexchange.com%2fquestions%2f493845%2fhow-to-use-a-bash-script-to-move-and-rename-files-with-grep%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
1
Does your system have the perl-based
rename/prenamecommand?– steeldriver
32 mins ago
I am running this on Macintosh and intended to use the move mv command to rename it.
– Þorgeir Valur Ellertsson
5 mins ago