Cloud, Security, Digital Forensics, UNIX
Not as ridiculous as GPL cola (OpenCola).
and how do you play this thing?$ sed sedtris.sed sed: -e expression #1, char 11: unterminated `s' command
Works fine for me :-). You're doing it wrong.% chmod + x sedtris.sed% ./sedtris.sedEnterEnter..And see the instructions on screen :-)
You can try to use this shell script to stop pressing Enter and enjoy the game.
Nice :-)
:[$ ./sedtris.shsed: command garbled: s/[^~]*~$/&&&/what could be the problem....
That's a GNU sed script, it will not work with AIX sed or Solaris sed (UNIX sed), it needs gsed.On AIX for example:./sedtris.sedsed: 0602-404 Function s/[^~]*~$/&&&/ cannot be parsed.Replaced the first line with:#!/opt/freeware/bin/sed -nf(this is GNU sed)And it works.
Not as ridiculous as GPL cola (OpenCola).
ReplyDeleteand how do you play this thing?
ReplyDelete$ sed sedtris.sed
sed: -e expression #1, char 11: unterminated `s' command
Works fine for me :-). You're doing it wrong.
ReplyDelete% chmod + x sedtris.sed
% ./sedtris.sed
Enter
Enter..
And see the instructions on screen :-)
You can try to use this shell script to stop pressing Enter and enjoy the game.
ReplyDeleteNice :-)
ReplyDelete:[
ReplyDelete$ ./sedtris.sh
sed: command garbled: s/[^~]*~$/&&&/
what could be the problem....
That's a GNU sed script, it will not work with AIX sed or Solaris sed (UNIX sed), it needs gsed.
ReplyDeleteOn AIX for example:
./sedtris.sed
sed: 0602-404 Function s/[^~]*~$/&&&/ cannot be parsed.
Replaced the first line with:
#!/opt/freeware/bin/sed -nf
(this is GNU sed)
And it works.