How can I rename a PDF file while viewing it?
up vote
0
down vote
favorite
I have many pdf files that I need to rename based on their visual content. Is there a pdf file viewer that will allow me to rename the file from within the viewer without having to go back to the file manager / command line?
I'm not looking for a "Save As" feature as that will result in an additional deletion step.
This functionality is available in tools like nomacs and geeqie but unfortunately they don't support pdf files.
software-recommendation pdf rename
add a comment |
up vote
0
down vote
favorite
I have many pdf files that I need to rename based on their visual content. Is there a pdf file viewer that will allow me to rename the file from within the viewer without having to go back to the file manager / command line?
I'm not looking for a "Save As" feature as that will result in an additional deletion step.
This functionality is available in tools like nomacs and geeqie but unfortunately they don't support pdf files.
software-recommendation pdf rename
1
If you launch the PDF from the file manager, it would be relatively easy to use Alt+Tab to switch back to the file manager, and press F2 to rename it.
– vanadium
Dec 12 at 8:16
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have many pdf files that I need to rename based on their visual content. Is there a pdf file viewer that will allow me to rename the file from within the viewer without having to go back to the file manager / command line?
I'm not looking for a "Save As" feature as that will result in an additional deletion step.
This functionality is available in tools like nomacs and geeqie but unfortunately they don't support pdf files.
software-recommendation pdf rename
I have many pdf files that I need to rename based on their visual content. Is there a pdf file viewer that will allow me to rename the file from within the viewer without having to go back to the file manager / command line?
I'm not looking for a "Save As" feature as that will result in an additional deletion step.
This functionality is available in tools like nomacs and geeqie but unfortunately they don't support pdf files.
software-recommendation pdf rename
software-recommendation pdf rename
edited Dec 12 at 2:02
WinEunuuchs2Unix
41.6k1070158
41.6k1070158
asked Dec 11 at 21:34
Holy Mackerel
75067
75067
1
If you launch the PDF from the file manager, it would be relatively easy to use Alt+Tab to switch back to the file manager, and press F2 to rename it.
– vanadium
Dec 12 at 8:16
add a comment |
1
If you launch the PDF from the file manager, it would be relatively easy to use Alt+Tab to switch back to the file manager, and press F2 to rename it.
– vanadium
Dec 12 at 8:16
1
1
If you launch the PDF from the file manager, it would be relatively easy to use Alt+Tab to switch back to the file manager, and press F2 to rename it.
– vanadium
Dec 12 at 8:16
If you launch the PDF from the file manager, it would be relatively easy to use Alt+Tab to switch back to the file manager, and press F2 to rename it.
– vanadium
Dec 12 at 8:16
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
Zathura can run external commands, so you can rename files using it. Open a file, then in Zathura, do:
:exec mv % foo.pdf
(The syntax is somewhat like Vim - :
to start command mode, %
stands for the filename, but that's about it.) But it doesn't pick up that the open file has been moved, so you're left with a blank window after moving. You can open the new PDF file likewise:
:open bar.pdf
It's available for installation in the official repos:
sudo apt install zathura
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',
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%2f1100153%2fhow-can-i-rename-a-pdf-file-while-viewing-it%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
up vote
1
down vote
accepted
Zathura can run external commands, so you can rename files using it. Open a file, then in Zathura, do:
:exec mv % foo.pdf
(The syntax is somewhat like Vim - :
to start command mode, %
stands for the filename, but that's about it.) But it doesn't pick up that the open file has been moved, so you're left with a blank window after moving. You can open the new PDF file likewise:
:open bar.pdf
It's available for installation in the official repos:
sudo apt install zathura
add a comment |
up vote
1
down vote
accepted
Zathura can run external commands, so you can rename files using it. Open a file, then in Zathura, do:
:exec mv % foo.pdf
(The syntax is somewhat like Vim - :
to start command mode, %
stands for the filename, but that's about it.) But it doesn't pick up that the open file has been moved, so you're left with a blank window after moving. You can open the new PDF file likewise:
:open bar.pdf
It's available for installation in the official repos:
sudo apt install zathura
add a comment |
up vote
1
down vote
accepted
up vote
1
down vote
accepted
Zathura can run external commands, so you can rename files using it. Open a file, then in Zathura, do:
:exec mv % foo.pdf
(The syntax is somewhat like Vim - :
to start command mode, %
stands for the filename, but that's about it.) But it doesn't pick up that the open file has been moved, so you're left with a blank window after moving. You can open the new PDF file likewise:
:open bar.pdf
It's available for installation in the official repos:
sudo apt install zathura
Zathura can run external commands, so you can rename files using it. Open a file, then in Zathura, do:
:exec mv % foo.pdf
(The syntax is somewhat like Vim - :
to start command mode, %
stands for the filename, but that's about it.) But it doesn't pick up that the open file has been moved, so you're left with a blank window after moving. You can open the new PDF file likewise:
:open bar.pdf
It's available for installation in the official repos:
sudo apt install zathura
answered Dec 12 at 1:46
muru
135k20289492
135k20289492
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f1100153%2fhow-can-i-rename-a-pdf-file-while-viewing-it%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
If you launch the PDF from the file manager, it would be relatively easy to use Alt+Tab to switch back to the file manager, and press F2 to rename it.
– vanadium
Dec 12 at 8:16