Home Artists Posts Import Register

Content

What do you want to see explained by Level1?? Let us know (we need ideas...)  

+ A brief history of the stack, By: Sten Henriksson - https://www.sigcis.org/files/A%20brief%20history.pdf 

+ Reference Guide - https://www.gnu.org/software/bash/manual/html_node/Directory-Stack-Builtins.html  

Get going with a pc and fiddle with Linux! If you can successfully  create/rotate/delete stacks, you're on the track for knowing the basics.   Hope you enjoyed!  

~ Editor Amber

Files

Level099Techs -- Lession 1: Popd-ing Your Bash Cherry

What do you want to see explained by Level1?? Let us know (we need ideas...) + A brief history of the stack, By: Sten Henriksson - https://www.sigcis.org/files/A%20brief%20history.pdf + Reference Guide - https://www.gnu.org/software/bash/manual/html_node/Directory-Stack-Builtins.html Get going with a pc and fiddle with Linux! If you can successfully create/rotate/delete stacks, you're on the track for knowing the basics. Hope you enjoyed! ~ Editor Amber ********************************** Thanks for watching our videos! If you want more, check us out online at the following places: + Website: http://level1techs.com/ + Forums: http://forum.level1techs.com/ + Store: http://store.level1techs.com/ + Patreon: https://www.patreon.com/level1 + KoFi: https://ko-fi.com/level1techs + L1 Twitter: https://twitter.com/level1techs + L1 Facebook: https://www.facebook.com/level1techs + L1/PGP Streaming: https://www.twitch.tv/teampgp + Wendell Twitter: https://twitter.com/tekwendell + Ryan Twitter: https://twitter.com/pgpryan + Krista Twitter: https://twitter.com/kreestuh + Business Inquiries/Brand Integrations: Queries@level1techs.com *IMPORTANT* Any email lacking “level1techs.com” should be ignored and immediately reported to Queries@level1techs.com. ------------------------------------------------------------------------------------------------------------- Intro and Outro Music By: Kevin MacLeod (incompetech.com) Licensed under Creative Commons: By Attribution 3.0 License http://creativecommons.org/licenses/by/3.0/

Comments

Anonymous

This was a great video. I am not an advanced linux user by any means but I didn't know about these commands. Perhaps you could talk about the grep command sometime? Thanks guys!

..,3

man grep in terminal or google. until you master SED I'd say your a n00b. <3

Anonymous

I would not disagree that I am certainly a linux noob in many ways! :P Thanks for letting me know about the SED command!

Anonymous

A similar concept to discuss could be job control since it works with a "stack" of processes. Ctrl+z/fg/bg/jobs are incredibly handy in interactive work, and 'wait' is handy in scripting for multi-processing via background processes.

Anonymous

I think you should explain load factors as displayed by top or uptime. Give an introduction to the process model first, so it can make some kind of sense. Then maybe look at sar.

Anonymous

Yaaaaaaasssss! Thank you!

Anonymous

I love this shit

Anonymous

Please explain: The miracle of birth.

Anonymous

Love little things like this, upped my sub.. Use bash daily and don't think I have ever used the stack. Would also love a video on apropos, man and info. Google is great but interrupts the flow so much.

Anonymous

Cool! Next could you do vnodes? That'd be really fun. Ooh, or how about some alternative shells like github.com/newnix/nxes? They're pretty dang cool.

Anonymous

Protip: same syntax for both, and you can implement `grep(1)` in terms of `sed(1)` with `sed -n '/foo/p' $file`. It also works in `awk(1)`. You can also read `man 7 regex` to get familiar with the patterns.