If like me you always forget the #tar option to extract #xz compressed #archives, this railroad-style #infographics is for you:
https://yesik.it/TARCS1
Notices by Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social), page 18
-
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Wednesday, 07-Feb-2018 22:08:57 EST Yes, I Know IT ! 🎓
-
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Tuesday, 06-Feb-2018 21:43:12 EST Yes, I Know IT ! 🎓
If like me you always forget the #tar option to extract #xz compressed #archives, this railroad-style #infographics is for you:
https://yesik.it/TARCS1 -
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Monday, 05-Feb-2018 21:12:22 EST Yes, I Know IT ! 🎓
If like me you always forget the #tar option to extract #xz compressed #archives, this railroad-style #infographics is for you:
https://yesik.it/TARCS1 -
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Sunday, 04-Feb-2018 20:41:52 EST Yes, I Know IT ! 🎓
If like me you always forget the #tar option to extract #xz compressed #archives, this railroad-style #infographics is for you:
https://yesik.it/TARCS1 -
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Saturday, 03-Feb-2018 19:47:28 EST Yes, I Know IT ! 🎓
If like me you always forget the #tar option to extract #xz compressed #archives, this railroad-style #infographics is for you:
https://yesik.it/TARCS1 -
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Friday, 02-Feb-2018 19:23:23 EST Yes, I Know IT ! 🎓
If like me you always forget the #tar option to extract #xz compressed #archives, this railroad-style #infographics is for you:
https://yesik.it/TARCS1 -
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Thursday, 01-Feb-2018 19:02:12 EST Yes, I Know IT ! 🎓
Cool tutorial by @shapeshed on the "join" command. Useful to merge files based on their content.
-
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Wednesday, 31-Jan-2018 18:51:30 EST Yes, I Know IT ! 🎓
If like me you always forget the #tar option to extract #xz compressed #archives, this railroad-style #infographics is for you:
https://yesik.it/TARCS1 -
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Tuesday, 30-Jan-2018 18:21:21 EST Yes, I Know IT ! 🎓
If like me you always forget the #tar option to extract #xz compressed #archives, this railroad-style #infographics is for you:
https://yesik.it/TARCS1 -
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Monday, 29-Jan-2018 17:56:09 EST Yes, I Know IT ! 🎓
If like me you always forget the #tar option to extract #xz compressed #archives, this railroad-style #infographics is for you:
https://yesik.it/TARCS1 -
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Sunday, 28-Jan-2018 17:25:07 EST Yes, I Know IT ! 🎓
JSON command line processing:
https://stedolan.github.io/jq/ -
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Saturday, 27-Jan-2018 17:07:09 EST Yes, I Know IT ! 🎓
How to Write Complex Awk Patterns using Operators?
https://www.yesik.it/EP13 -
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Friday, 26-Jan-2018 16:08:42 EST Yes, I Know IT ! 🎓
In Bash `~sylvain` is expanded to the home directory of the user whose login is 'sylvain'
I don't know if this works with other usernames though...
;)In conversation from mastodon.social permalink -
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Thursday, 25-Jan-2018 19:35:20 EST Yes, I Know IT ! 🎓
Actually this:
seq 10 | awk '{ print > "OUT." NR%2 }'
Will create *two* files. One containing odd lines. The other one containing even lines.
I agree the filenames are not very cool (OUT.0 and OUT.1).
Maybe something like that would be better:
seq 10 | awk '{ print > ((NR%2) ? "ODD" : "EVEN") }'
In conversation from mastodon.social permalink -
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Thursday, 25-Jan-2018 15:32:53 EST Yes, I Know IT ! 🎓
seq 10 | awk '{ print > "OUT." NR%2 }'
head OUT.?
Split a file in two parts based on odd/even linesIn conversation from mastodon.social permalink -
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Wednesday, 24-Jan-2018 22:19:52 EST Yes, I Know IT ! 🎓
seq 10 | awk NR%2
Keep odd lines of a fileIn conversation from mastodon.social permalink -
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Tuesday, 23-Jan-2018 22:13:47 EST Yes, I Know IT ! 🎓
How to Run a Web Server from a Docker Container?
https://www.yesik.it/EP16In conversation from mastodon.social permalink Attachments
-
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Monday, 22-Jan-2018 21:34:38 EST Yes, I Know IT ! 🎓
How to Install #Docker on Debian/Ubuntu/CentOS? | Yes, I Know IT ! https://www.yesik.it/EP15
In conversation from mastodon.social permalink Attachments
-
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Monday, 22-Jan-2018 10:03:55 EST Yes, I Know IT ! 🎓
Do you need "child" containers -- or "sibling" containers?
http://jpetazzo.github.io/2015/09/03/do-not-use-docker-in-docker-for-ci/
by @jpetazzoIn conversation from mastodon.social permalink -
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Sunday, 21-Jan-2018 09:43:00 EST Yes, I Know IT ! 🎓
Intriguing. What is the typical use case of running #Docker on a #RaspberryPi w/ #Raspian?
https://docs.docker.com/engine/installation/linux/docker-ce/debian/
In conversation from mastodon.social permalink