Tiny Core Linux

General TC => Programming & Scripting - Unofficial => Topic started by: vinnie on March 02, 2011, 11:28:47 AM

Title: shell scripting, which shell use tc?
Post by: vinnie on March 02, 2011, 11:28:47 AM
I wanted to learn some shell scripting and I went looking for tutorials, but for which shell should I look for the guides?
What uses the default tc?
Title: Re: shell scripting, which shell use tc?
Post by: Rich on March 02, 2011, 11:49:46 AM
Hi vinnie
I believe the busybox version is the bourne shell (Not bourne again).
This link has some pretty good info. http://steve-parker.org/sh/sh.shtml.
You'll find a lot of the TC scripts start with  #!/bin/sh  which is a link to
the shell interpreter.
Title: Re: shell scripting, which shell use tc?
Post by: hiro on March 02, 2011, 11:54:11 AM
I agree, search for "bourne shell", not the bash monstrosity.
Title: Re: shell scripting, which shell use tc?
Post by: tinypoodle on March 02, 2011, 12:02:15 PM
I wanted to learn some shell scripting and I went looking for tutorials, but for which shell should I look for the guides?
What uses the default tc?

http://www.in-ulm.de/~mascheck/various/ash/#busybox
Title: Re: shell scripting, which shell use tc?
Post by: vinnie on March 02, 2011, 12:35:15 PM
Ok, it's ash  http://en.wikipedia.org/wiki/Ash_shell  :)
Thanks