2

I don't know if this is a valid question, I want to make links from selected files in nautilus and move the link files to the desktop, but piping commands doesn't work.
My combination in "Path" field on "Command" tab is:

link %B "Link to "%B | mv * ~/Desktop 

I don't know what I'm missing.

Nowruz
  • 151

1 Answers1

0

Why somebody didn't say: "Don't ask stupid questions again", because:

My combination in "Path" field on "Command" tab should be:

link %B /home/<username>/Desktop/"Link to "%B 

But, for a reason unknown to me, link command only accepts one file and not directories. So i changed the command in "Path" field to:

ln --symbolic %F /home/<username>/Desktop/  

And it works like a charm.

And apparently i can not use pipes in "nautilus-actions".

Nowruz
  • 151