Re: BASH textbook for kids

2022-12-21 Thread greg zegan via PLUG-discuss
https://www.zybooks.com/catalog/programming-in-python-3/ On Wednesday, December 21, 2022 at 03:34:14 PM MST, James Mcphee via PLUG-discuss wrote: Probably my favorite little tutorial on python is a byte of python https://python.swaroopch.com/ Though I do wish we had a good tutorial

Re: sudo cd... command not found?

2022-12-21 Thread Keith Smith via PLUG-discuss
Thank you for your help!! This has been a problem for years going back to CentOS 5.x maybe. In the post I would just become root. Only mod was to add the user in question to the sudo group. Running Ubuntu 20.04lts Keith On 2022-12-20 20:46, greg zegan via PLUG-discuss wrote: Hello,

Re: sudo cd... command not found?

2022-12-21 Thread Keith Smith via PLUG-discuss
Thank you for your help!! sudo: chdir: command not found I am running Ubuntu 20.04lts Keith On 2022-12-20 20:41, Bob Elzer via PLUG-discuss wrote: Try. Sudo chdir Cd is builtin to the shell On Tue, Dec 20, 2022, 6:27 PM Keith Smith via PLUG-discuss wrote: Hi, Not sure what is going on

Re: BASH textbook for kids

2022-12-21 Thread James Mcphee via PLUG-discuss
Probably my favorite little tutorial on python is a byte of python https://python.swaroopch.com/ Though I do wish we had a good tutorial that taught good programming behaviors that wasn't ultra-specific to a task. On Wed, Dec 21, 2022 at 3:31 PM greg zegan via PLUG-discuss <

Re: BASH textbook for kids

2022-12-21 Thread greg zegan via PLUG-discuss
https://pythoninstitute.org/study-resources On Wednesday, December 21, 2022 at 02:06:46 PM MST, greg zegan via PLUG-discuss wrote: https://edube.org/learn/pe-1/earn-pcep-certification-8 On Wednesday, December 21, 2022 at 01:07:22 PM MST, JD Austin via PLUG-discuss wrote:

Re: BASH textbook for kids

2022-12-21 Thread Michael via PLUG-discuss
your link is broken greg On Wed, Dec 21, 2022 at 4:06 PM greg zegan via PLUG-discuss < plug-discuss@lists.phxlinux.org> wrote: > https://edube.org/learn/pe-1/earn-pcep-certification-8 > > On Wednesday, December 21, 2022 at 01:07:22 PM MST, JD Austin via > PLUG-discuss wrote: > > > Python and

Re: BASH textbook for kids

2022-12-21 Thread greg zegan via PLUG-discuss
https://edube.org/learn/pe-1/earn-pcep-certification-8 On Wednesday, December 21, 2022 at 01:07:22 PM MST, JD Austin via PLUG-discuss wrote: Python and many other things (but not Bash) here:  https://www.w3schools.com/Bash: - https://tldp.org/LDP/Bash-Beginners-Guide/html/

Re: BASH textbook for kids

2022-12-21 Thread JD Austin via PLUG-discuss
Python and many other things (but not Bash) here: https://www.w3schools.com/ Bash: - https://tldp.org/LDP/Bash-Beginners-Guide/html/ - https://linuxconfig.org/bash-scripting-tutorial-for-beginners - https://www.youtube.com/watch?v=IXhiZeXZVWc JD -- J.D AUSTIN TWIN GECKOS TECHNOLOGY

BASH textbook for kids

2022-12-21 Thread Michael via PLUG-discuss
Does anyone know of a good resource that teaches kids BASH or PYTHON? I gots myself a 24 year old young lady who I'd like to get a book for. -- :-)~MIKE~(-: --- PLUG-discuss mailing list: PLUG-discuss@lists.phxlinux.org To subscribe, unsubscribe,

Re: sudo cd... command not found?

2022-12-21 Thread Joe Neglia via PLUG-discuss
Slightly OT: Bob, since you are using tcsh, you can probably answer a question I have had for decades: what is the reason for using tcsh (or, for that matter, any terminal other than the usual default of bash)? On Wed, Dec 21, 2022 at 10:49 AM Bob Elzer via PLUG-discuss <

Re: sudo cd... command not found?

2022-12-21 Thread Bob Elzer via PLUG-discuss
Lol, I have an alias for cd on my system, which uses chdir otherwise it would loop. I'm using tcsh. It turns out chdir is just a synonym for cd built into tcsh. I knew What would happen if you did a sudo cd, but I was so focused on finding another way to type in cd I completely forgot about it.