Nautlius: add mouse right-click action to compute MD5 sumHow do I customize the context menu in Nautilus?How do I make a custom right click command for nautilus?MD5 checksum cross-platform compatibilityProblem while installing Ubuntu 14.04 from USB driveAre my md5 keys actually different? Do I have to redownload Ubuntu?Can two different firmware files have same md5 sum?How to change MD5 of a fileRemove Lines from File which appear in another MD5 FileHow can I recursively list Md5sum of all the files in a directory and its subdirectories?Ubuntu Desktop 16.04.2 md5sum grub files problemMD5 Check Sum Not Matching Ubuntu GnomeHow to md5 special characters - Thumbnail related
Is expanding the research of a group into machine learning as a PhD student risky?
A Rare Riley Riddle
Is it appropriate to ask a job candidate if we can record their interview?
Is HostGator storing my password in plaintext?
Implement the Thanos sorting algorithm
Customer Requests (Sometimes) Drive Me Bonkers!
How do we know the LHC results are robust?
Why does indent disappear in lists?
India just shot down a satellite from the ground. At what altitude range is the resulting debris field?
Lay out the Carpet
Where does the Z80 processor start executing from?
Did Dumbledore lie to Harry about how long he had James Potter's invisibility cloak when he was examining it? If so, why?
How does Loki do this?
Purchasing a ticket for someone else in another country?
System.debug(JSON.Serialize(o)) Not longer shows full string
What does 算不上 mean in 算不上太美好的日子?
Pole-zeros of a real-valued causal FIR system
How to write papers efficiently when English isn't my first language?
How to run a prison with the smallest amount of guards?
Method to test if a number is a perfect power?
Integer addition + constant, is it a group?
Can the discrete variable be a negative number?
Would a high gravity rocky planet be guaranteed to have an atmosphere?
How can a function with a hole (removable discontinuity) equal a function with no hole?
Nautlius: add mouse right-click action to compute MD5 sum
How do I customize the context menu in Nautilus?How do I make a custom right click command for nautilus?MD5 checksum cross-platform compatibilityProblem while installing Ubuntu 14.04 from USB driveAre my md5 keys actually different? Do I have to redownload Ubuntu?Can two different firmware files have same md5 sum?How to change MD5 of a fileRemove Lines from File which appear in another MD5 FileHow can I recursively list Md5sum of all the files in a directory and its subdirectories?Ubuntu Desktop 16.04.2 md5sum grub files problemMD5 Check Sum Not Matching Ubuntu GnomeHow to md5 special characters - Thumbnail related
Context: 16.04
How does one mouse right-click action to compute the MD5 sum of a file?
md5sum
add a comment |
Context: 16.04
How does one mouse right-click action to compute the MD5 sum of a file?
md5sum
Possible duplicate of How do I make a custom right click command for nautilus?
– WinEunuuchs2Unix
12 hours ago
1
Possible duplicate of How do I customize the context menu in Nautilus?
– David Foerster
12 hours ago
add a comment |
Context: 16.04
How does one mouse right-click action to compute the MD5 sum of a file?
md5sum
Context: 16.04
How does one mouse right-click action to compute the MD5 sum of a file?
md5sum
md5sum
asked 16 hours ago
gatorbackgatorback
1,17031127
1,17031127
Possible duplicate of How do I make a custom right click command for nautilus?
– WinEunuuchs2Unix
12 hours ago
1
Possible duplicate of How do I customize the context menu in Nautilus?
– David Foerster
12 hours ago
add a comment |
Possible duplicate of How do I make a custom right click command for nautilus?
– WinEunuuchs2Unix
12 hours ago
1
Possible duplicate of How do I customize the context menu in Nautilus?
– David Foerster
12 hours ago
Possible duplicate of How do I make a custom right click command for nautilus?
– WinEunuuchs2Unix
12 hours ago
Possible duplicate of How do I make a custom right click command for nautilus?
– WinEunuuchs2Unix
12 hours ago
1
1
Possible duplicate of How do I customize the context menu in Nautilus?
– David Foerster
12 hours ago
Possible duplicate of How do I customize the context menu in Nautilus?
– David Foerster
12 hours ago
add a comment |
1 Answer
1
active
oldest
votes
You can work with a nautilus script.
Create the scripts directory if it does not yet exist
mkdir -p ~/.local/share/nautilus/scripts/
Place your script into that directory and make it executable (
chmod +x <name_of_script>
or via your file manager: right-click file, properties). Any executable script you put there will be available under an entry "Scripts" in your right-click menu.In your script, you can use the variable
NAUTILUS_SCRIPT_SELECTED_FILE_PATHS
to retrieve a newline-delimited list of selected files (i. e., one file path in case you selected a single file). You will also need to display the output: this can be done by piping the output of the command to zenity. This simple script will already cut it:#!/bin/bash
set -eu -o pipefail
md5sum "$NAUTILUS_SCRIPT_SELECTED_FILE_PATHS" | zenity --text-info
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%2f1129135%2fnautlius-add-mouse-right-click-action-to-compute-md5-sum%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
You can work with a nautilus script.
Create the scripts directory if it does not yet exist
mkdir -p ~/.local/share/nautilus/scripts/
Place your script into that directory and make it executable (
chmod +x <name_of_script>
or via your file manager: right-click file, properties). Any executable script you put there will be available under an entry "Scripts" in your right-click menu.In your script, you can use the variable
NAUTILUS_SCRIPT_SELECTED_FILE_PATHS
to retrieve a newline-delimited list of selected files (i. e., one file path in case you selected a single file). You will also need to display the output: this can be done by piping the output of the command to zenity. This simple script will already cut it:#!/bin/bash
set -eu -o pipefail
md5sum "$NAUTILUS_SCRIPT_SELECTED_FILE_PATHS" | zenity --text-info
add a comment |
You can work with a nautilus script.
Create the scripts directory if it does not yet exist
mkdir -p ~/.local/share/nautilus/scripts/
Place your script into that directory and make it executable (
chmod +x <name_of_script>
or via your file manager: right-click file, properties). Any executable script you put there will be available under an entry "Scripts" in your right-click menu.In your script, you can use the variable
NAUTILUS_SCRIPT_SELECTED_FILE_PATHS
to retrieve a newline-delimited list of selected files (i. e., one file path in case you selected a single file). You will also need to display the output: this can be done by piping the output of the command to zenity. This simple script will already cut it:#!/bin/bash
set -eu -o pipefail
md5sum "$NAUTILUS_SCRIPT_SELECTED_FILE_PATHS" | zenity --text-info
add a comment |
You can work with a nautilus script.
Create the scripts directory if it does not yet exist
mkdir -p ~/.local/share/nautilus/scripts/
Place your script into that directory and make it executable (
chmod +x <name_of_script>
or via your file manager: right-click file, properties). Any executable script you put there will be available under an entry "Scripts" in your right-click menu.In your script, you can use the variable
NAUTILUS_SCRIPT_SELECTED_FILE_PATHS
to retrieve a newline-delimited list of selected files (i. e., one file path in case you selected a single file). You will also need to display the output: this can be done by piping the output of the command to zenity. This simple script will already cut it:#!/bin/bash
set -eu -o pipefail
md5sum "$NAUTILUS_SCRIPT_SELECTED_FILE_PATHS" | zenity --text-info
You can work with a nautilus script.
Create the scripts directory if it does not yet exist
mkdir -p ~/.local/share/nautilus/scripts/
Place your script into that directory and make it executable (
chmod +x <name_of_script>
or via your file manager: right-click file, properties). Any executable script you put there will be available under an entry "Scripts" in your right-click menu.In your script, you can use the variable
NAUTILUS_SCRIPT_SELECTED_FILE_PATHS
to retrieve a newline-delimited list of selected files (i. e., one file path in case you selected a single file). You will also need to display the output: this can be done by piping the output of the command to zenity. This simple script will already cut it:#!/bin/bash
set -eu -o pipefail
md5sum "$NAUTILUS_SCRIPT_SELECTED_FILE_PATHS" | zenity --text-info
edited 11 hours ago
David Foerster
28.5k1367113
28.5k1367113
answered 16 hours ago
vanadiumvanadium
7,20411431
7,20411431
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%2f1129135%2fnautlius-add-mouse-right-click-action-to-compute-md5-sum%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
Possible duplicate of How do I make a custom right click command for nautilus?
– WinEunuuchs2Unix
12 hours ago
1
Possible duplicate of How do I customize the context menu in Nautilus?
– David Foerster
12 hours ago