Skip to main content
Dog fooding.
Source Link
  1. The 'uname' part

To answer the first question, the crucial thing is what uname without a parameter returns on Arch Linux. The man page does not define it, but uname Command says it is equivalent to uname -s:

-s   Displays the system name. This flag is on by default.

For -s, the man page saysays "print the kernel name". On Arch Linux uname returns

Linux

whereas on, for example, Cygwin uname returns something like:

CYGWIN_NT-5.2-WOW64

  1. The 'date' part

date -u +%W returns the week number. As the last part ("Linux") is a fixed string, the final output depends on which week the command line is run in (the hash is computed on for example "07Linux"). With this knowledge the output can also be computed on Cygwin.

  1. An example

The week number for 2012-02-18 is 7 and date -u +%W`uname` returns (has a leading zero, but this is expected for the task at hand)

07Linux

and the output from sha256sum (a SHA-2 hash) is:

4a65f65b40cc2b0a7aaa726e895d72425ede255021e2ce3e935dd2719e4d33b9

On Cygwin it can be computed as:

echo '07Linux'|sha256sum|sed 's/\W//g'

(This actually worked when I tried to register at ArchWiki...)

  1. The 'uname' part

To answer the first question, the crucial thing is what uname without a parameter returns on Arch Linux. The man page does not define it, but uname Command says it is equivalent to uname -s:

-s   Displays the system name. This flag is on by default.

For -s, the man page say "print the kernel name". On Arch Linux uname returns

Linux

whereas on for example Cygwin uname returns something like:

CYGWIN_NT-5.2-WOW64

  1. The 'date' part

date -u +%W returns the week number. As the last part ("Linux") is a fixed string, the final output depends on which week the command line is run in (the hash is computed on for example "07Linux"). With this knowledge the output can also be computed on Cygwin.

  1. An example

The week number for 2012-02-18 is 7 and date -u +%W`uname` returns (has a leading zero, but this is expected for the task at hand)

07Linux

and the output from sha256sum (a SHA-2 hash) is:

4a65f65b40cc2b0a7aaa726e895d72425ede255021e2ce3e935dd2719e4d33b9

On Cygwin it can be computed as:

echo '07Linux'|sha256sum|sed 's/\W//g'

(This actually worked when I tried to register at ArchWiki...)

  1. The 'uname' part

To answer the first question, the crucial thing is what uname without a parameter returns on Arch Linux. The man page does not define it, but uname Command says it is equivalent to uname -s:

-s   Displays the system name. This flag is on by default.

For -s, the man page says "print the kernel name". On Arch Linux uname returns

Linux

whereas on, for example, Cygwin uname returns something like:

CYGWIN_NT-5.2-WOW64

  1. The 'date' part

date -u +%W returns the week number. As the last part ("Linux") is a fixed string, the final output depends on which week the command line is run in (the hash is computed on for example "07Linux"). With this knowledge the output can also be computed on Cygwin.

  1. An example

The week number for 2012-02-18 is 7 and date -u +%W`uname` returns (has a leading zero, but this is expected for the task at hand)

07Linux

and the output from sha256sum (a SHA-2 hash) is:

4a65f65b40cc2b0a7aaa726e895d72425ede255021e2ce3e935dd2719e4d33b9

On Cygwin it can be computed as:

echo '07Linux'|sha256sum|sed 's/\W//g'

(This actually worked when I tried to register at ArchWiki...)

Better formatting.
Source Link

1. The 'uname' part

  1. The 'uname' part
 

To answer the first question, the crucial thing is what uname without a parameter returns on Arch Linux. The man page does not define it, but uname Command says it is equivalent to uname -s:

-s   Displays the system name. This flag is on by default.

For -s, the man page say "print the kernel name". On Arch Linux uname returns

Linux

whereas on for example Cygwin uname returns something like:

CYGWIN_NT-5.2-WOW64

2. The 'date' part

  1. The 'date' part

date -u +%W returns the week number. As the last part ("Linux") is a fixed string, the final output depends on which week the command line is run in (the hash is computed on for example "07Linux"). With this knowledge the output can also be computed on Cygwin.

3. An example

  1. An example

The week number for 2012-02-18 is 7 and date -u +%W`uname` returns (has a leading zero, but this is expected for the task at hand)

07Linux

and the output from sha256sum (a SHA-2 hash) is:

4a65f65b40cc2b0a7aaa726e895d72425ede255021e2ce3e935dd2719e4d33b9

On Cygwin it can be computed as:

echo '07Linux'|sha256sum|sed 's/\W//g'

(This actually worked when I tried to register at ArchWiki...)

1. The 'uname' part

To answer the first question, the crucial thing is what uname without a parameter returns on Arch Linux. The man page does not define it, but uname Command says it is equivalent to uname -s:

-s   Displays the system name. This flag is on by default.

For -s, the man page say "print the kernel name". On Arch Linux uname returns

Linux

whereas on for example Cygwin uname returns something like:

CYGWIN_NT-5.2-WOW64

2. The 'date' part

date -u +%W returns the week number. As the last part ("Linux") is a fixed string, the final output depends on which week the command line is run in (the hash is computed on for example "07Linux"). With this knowledge the output can also be computed on Cygwin.

3. An example

The week number for 2012-02-18 is 7 and date -u +%W`uname` returns (has a leading zero, but this is expected for the task at hand)

07Linux

and the output from sha256sum (a SHA-2 hash) is:

4a65f65b40cc2b0a7aaa726e895d72425ede255021e2ce3e935dd2719e4d33b9

On Cygwin it can be computed as:

echo '07Linux'|sha256sum|sed 's/\W//g'

(This actually worked when I tried to register at ArchWiki...)

  1. The 'uname' part
 

To answer the first question, the crucial thing is what uname without a parameter returns on Arch Linux. The man page does not define it, but uname Command says it is equivalent to uname -s:

-s   Displays the system name. This flag is on by default.

For -s, the man page say "print the kernel name". On Arch Linux uname returns

Linux

whereas on for example Cygwin uname returns something like:

CYGWIN_NT-5.2-WOW64

  1. The 'date' part

date -u +%W returns the week number. As the last part ("Linux") is a fixed string, the final output depends on which week the command line is run in (the hash is computed on for example "07Linux"). With this knowledge the output can also be computed on Cygwin.

  1. An example

The week number for 2012-02-18 is 7 and date -u +%W`uname` returns (has a leading zero, but this is expected for the task at hand)

07Linux

and the output from sha256sum (a SHA-2 hash) is:

4a65f65b40cc2b0a7aaa726e895d72425ede255021e2ce3e935dd2719e4d33b9

On Cygwin it can be computed as:

echo '07Linux'|sha256sum|sed 's/\W//g'

(This actually worked when I tried to register at ArchWiki...)

added 118 characters in body; added 10 characters in body; added 1 characters in body; added 2 characters in body
Source Link

1. The 'uname' part

To answer the first question, the crucial thing is what uname without a parameter returns on Arch Linux. The man pageman page does not define it, but uname Command says it is equivalent to uname -s:

-s   Displays the system name. This flag is on by default.

For -s, the man page say "print the kernel name". On Arch Linux uname returns

Linux

whereas on for example Cygwin uname returns something like:

CYGWIN_NT-5.2-WOW64

2. The 'date' part

date -u +%W returns the week number. As the last part ("Linux") is a fixed string, the final output depends on which week the command line is run in (the hash is computed on for example "07Linux"). With this knowledge the output can also be computed on Cygwin.

3. An example

The week number for 2012-02-18 is 7 and date -u +%W+%W`uname`uname`` returns (has a leading zero, but this is expected for the task at hand)

07Linux

and the output from sha256sum (a SHA-2 hash) is:

4a65f65b40cc2b0a7aaa726e895d72425ede255021e2ce3e935dd2719e4d33b9

On Cygwin it can be computed as:

echo '07Linux'|sha256sum|sed 's/\W//g'

(This actually worked when I tried to register at ArchWiki...)

1. The 'uname' part

To answer the first question, the crucial thing is what uname without a parameter returns on Arch Linux. The man page does not define it, but uname Command says it is equivalent to uname -s:

-s   Displays the system name. This flag is on by default.

For -s, the man page say "print the kernel name". On Arch Linux uname returns

Linux

whereas on for example Cygwin uname returns something like:

CYGWIN_NT-5.2-WOW64

2. The 'date' part

date -u +%W returns the week number. As the last part ("Linux") is a fixed string, the final output depends on which week the command line is run in (the hash is computed on for example "07Linux"). With this knowledge the output can also be computed on Cygwin.

3. An example

The week number for 2012-02-18 is 7 and date -u +%Wuname`` returns (has a leading zero, but this is expected for the task at hand)

07Linux

and the output from sha256sum is:

4a65f65b40cc2b0a7aaa726e895d72425ede255021e2ce3e935dd2719e4d33b9

On Cygwin it can be computed as:

echo '07Linux'|sha256sum|sed 's/\W//g'

(This actually worked when I tried to register at ArchWiki...)

1. The 'uname' part

To answer the first question, the crucial thing is what uname without a parameter returns on Arch Linux. The man page does not define it, but uname Command says it is equivalent to uname -s:

-s   Displays the system name. This flag is on by default.

For -s, the man page say "print the kernel name". On Arch Linux uname returns

Linux

whereas on for example Cygwin uname returns something like:

CYGWIN_NT-5.2-WOW64

2. The 'date' part

date -u +%W returns the week number. As the last part ("Linux") is a fixed string, the final output depends on which week the command line is run in (the hash is computed on for example "07Linux"). With this knowledge the output can also be computed on Cygwin.

3. An example

The week number for 2012-02-18 is 7 and date -u +%W`uname` returns (has a leading zero, but this is expected for the task at hand)

07Linux

and the output from sha256sum (a SHA-2 hash) is:

4a65f65b40cc2b0a7aaa726e895d72425ede255021e2ce3e935dd2719e4d33b9

On Cygwin it can be computed as:

echo '07Linux'|sha256sum|sed 's/\W//g'

(This actually worked when I tried to register at ArchWiki...)

added 50 characters in body; added 39 characters in body; added 12 characters in body; added 8 characters in body; added 47 characters in body
Source Link
Loading
Source Link
Loading