You are not logged in.
Trying to create a wiki account, but apparently the output is incorrect:
$ date -u +%V`uname` | sha256sum | sed 's/\W//g'
8bd7b17e14378c99135afa4d0412bef5a59d5e8ade4bd7bed33d2fd2b1301fee
$ date -u +%V`uname`
34`uname`
I have tried 35`uname` and 33`uname`, none work. JavaScript is on, and tried with uBlock and Ghostery off as well. None have worked. Any ideas?
Last edited by ctown.myth (2015-08-20 20:23:46)
AKA MyCookie!
Offline
What's the output of
type uname
Offline
Is there actually a shell that does not support the backtick syntax for subshells? If uname were not found, the shell should print an error (at least bash does):
$ date -u +%V`foo`
bash: foo: command not found
34
Offline
Ah, yes, fish doesn't support backtics.
http://fishshell.com/docs/current/faq.h … subcommand
Last edited by karol (2015-08-20 19:50:21)
Offline
Is there actually a shell that does not support the backtick syntax for subshells? If uname were not found, the shell should print an error (at least bash does):
$ date -u +%V`foo` bash: foo: command not found 34
Ah, yes, fish doesn't support backtics.
http://fishshell.com/docs/current/faq.h … subcommand
And that's it! Thanks karol & lahwaacz!
AKA MyCookie!
Offline