i would like to add nautilus script for right click,like convert selected file with base64 but no luck.Regular command in terminal is like:
base64 input.jpg output.txt
This is my closest script to do it;
#!/bin/sh
echo "$NAUTILUS_SCRIPT_SELECTED_FILE_Path" | base64 > Base64
But it gives the path of file as base64. Can anybody help me about this?