Re: [Fish-users] Problem using ~ in path

2018-09-26 Thread Alex Boisvert
Probably obvious but just in case I'll mention that you can also use $HOME instead of ~. On Wed, Sep 26, 2018 at 2:43 PM Kurtis Rader wrote: > On Wed, Sep 26, 2018 at 1:43 PM John Chludzinski < > john.chludzin...@gmail.com> wrote: > >> I tried to use ~ in a path and got this: >> >> sudo dd if=~

Re: [Fish-users] Problem using ~ in path

2018-09-26 Thread Kurtis Rader
On Wed, Sep 26, 2018 at 1:43 PM John Chludzinski wrote: > I tried to use ~ in a path and got this: > > sudo dd if=~/Downloads/SSS/sss_image-20180817.img of=/dev/sdb bs=1048576 > > dd: failed to open '~/Downloads/SSS/sss_image-20180817.img': No such > file or directory > That is the expected beha

[Fish-users] Problem using ~ in path

2018-09-26 Thread John Chludzinski
I tried to use ~ in a path and got this: sudo dd if=~/Downloads/SSS/sss_image-20180817.img of=/dev/sdb bs=1048576 dd: failed to open '~/Downloads/SSS/sss_image-20180817.img': No such file or directory This works fine: sudo dd if=/home/jski/Downloads/SSS/sss_image-20180817.img of=/dev/sdb bs=10