tag 29319 notabug
thanks

On 11/16/2017 10:27 AM, Simon Convent wrote:
> Hello,
> 
> when I run the command
> 
> echo test | tee "~/Desktop/test.txt"
> 
> I get the following error message:
> 
> tee: ~/Desktop/test.txt: No such file or directory

That's because your use of quoting prevents shell tilde-expansion.  Proof:

$ echo "~/Desktop"
~/Desktop

> 
> But when I run
> 
> echo test | tee "/home/simon/Desktop/test.txt"
> 
> , which is the same directory, tee works fine.

No, that's not the same string.
Proof:

$ echo ~/Desktop
/home/eblake/Desktop

> 
> If I omit the "", everything works fine as well.

That's because without the "", your shell can do tilde-expansion.

> Is this behavior intended? I don't see why the "" should change the
> behavior like this.

dd is not the change in behavior here, but your incorrect understanding
of how shell quoting works.  As such, I'm marking this as not a
coreutils bug (as the argv[] passed to dd is AFTER the shell has already
done tilde-expansion and quote removal, so dd is faithfully trying to
open whatever literal string the shell handed it).  But feel free to
follow up with more questions if you need pointers on learning to use
the shell properly.

-- 
Eric Blake, Principal Software Engineer
Red Hat, Inc.           +1-919-301-3266
Virtualization:  qemu.org | libvirt.org

Attachment: signature.asc
Description: OpenPGP digital signature

Reply via email to