Score:0

Why is my alias from .bashrc not working?

pl flag

I've written a line in .bashrc

alias untar='sudo tar –xvzf'

Now, when I use "untar" in bash I get the error:

untar filename.tar.gz

tar: invalid option -- '�'
Try 'tar --help' or 'tar --usage' for more information.

However when I use the actual command instead of the alias

sudo tar –xvzf filename.tar.gz

It works fine.

I did run . ~/.bashrc, so the alias is "known" (or however you'd call it). Which is also evident form the error message which acknowledges it's a tar command. There's other aliases in bashrc which still work fine.

So, why isn't my alias working?

in flag
You will likely want to use a function rather than an alias. [This answer should give you what you need](https://askubuntu.com/a/1135732/1222991)
bac0n avatar
cn flag
@MarkRensen, you should skip `-z` and let `tar` decide on what decompression to use.
sudodus avatar
jp flag
+1 for the tip by @bac0n. I adopted it in my answer :-)
Score:5
jp flag

Your alias has a bad character, not the standard ASCII symbol (minus sign) but another one, which by some fonts is rendered as a longer dash.

This alias works for me

alias untar='sudo tar -xvf'

$ printf '-'|hexdump -C
00000000  2d                                                |-|
00000001
$ printf '–'|hexdump -C
00000000  e2 80 93                                          |...|
00000003
pl flag
Thank you, that solved it. It looked like - but it was not -. It's like the problem with the greek question mark.
sudodus avatar
jp flag
You are welcome @MarkRensen. I'm glad that I could spot it: Kudos to the font in my terminal window.
bac0n avatar
cn flag
you should be able to do `printf %x\\n "'–"`
bac0n avatar
cn flag
`printf '%b\n' \\U$(printf '%x\n' "'–")` should give you a full circle.
sudodus avatar
jp flag
@bac0n, nicer and simpler commands than mine , but maybe not as good as explanation as with the explicit 'hexdump'.
mangohost

Post an answer

Most people don’t grasp that asking a lot of questions unlocks learning and improves interpersonal bonding. In Alison’s studies, for example, though people could accurately recall how many questions had been asked in their conversations, they didn’t intuit the link between questions and liking. Across four studies, in which participants were engaged in conversations themselves or read transcripts of others’ conversations, people tended not to realize that question asking would influence—or had influenced—the level of amity between the conversationalists.