easy shell


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting easy shell
# 1  
Old 09-06-2006
easy shell

I am a novice to shell. so to start of which shell is easier to learn. i have cygwin on windows. plz help me to start of
# 2  
Old 09-06-2006
That's really just a matter of opinion. Any posix/sh-based shells (sh, bash, ksh, etc.) are going to be about the same -- if you are familiar with one, you are going to be familiar with another. csh/tcsh are supposedly "easier" if you are a C programmer, but personally I find csh/tcsh to be more difficult to use.
# 3  
Old 09-06-2006
Lightbulb Install Linux!

the best thing to do is install linux, you start wrong...
# 4  
Old 09-07-2006
Amen. There's a lot to be said for jumping in the deep end. And at least with a pure UNIX system, people will be able to help you.
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Shell Script for renaming and moving Files - Easy?

Hey guys, ive been working on this for about 2hrs now - without any solution. At first I need to say I dont have skills in linux bash scripting, but I tried to use some codesnippets and manuals from google. What I want to do: I have different folders including 2 different filestypes with... (15 Replies)
Discussion started by: peter1337
15 Replies

2. Shell Programming and Scripting

Opinion on an easy shell script (mv)

:wall:I've this simple code: STF=/opt/aaa cat $STF | nice sort -u > $STF.new && mv $STF.new $STF Which works until today. What happened is that this script has been corrupted the FS, so I've to use fschk to repair the filesystem. I presume the move command executed just a little too early... (1 Reply)
Discussion started by: accolito
1 Replies

3. Shell Programming and Scripting

I need help to write easy shell script

Hello every one :D I am very new in Linux ... that why I do not have any idea to write the script :confused: I am trying to read some tutorial , but I do not have enough time to do it ! because I have to submit my project results in next Wednesday I need your help to write script ! I will... (2 Replies)
Discussion started by: seereen
2 Replies

4. Shell Programming and Scripting

Howto: easy date range iteration/counting on GNU systems in the shell

Should work in any shell, but requires GNU date, although GNU date seems only to be happy for input dates between 1902 and 2037, inclusive (49673 days). Assume $a and $b hold two dates, e.g. set a=2010-03-27 set b=2010-04-04 Marginally faster: iterator: seq -f "$a +%1.0f days" 1 50000 |... (0 Replies)
Discussion started by: laddiebuck
0 Replies

5. UNIX for Dummies Questions & Answers

Need help on installing an EASY to use and easy to install command line text editor

Hi again. Sorry if it seems like I'm spamming the boards a bit, but I figured I might as well ask all the questions I need answers to at once, and hopefully at least get some. I have installed Solaris 10 on a server. The default text editors are there (vi, ex, ed, maybe others, I know emacs is... (4 Replies)
Discussion started by: EugeneG
4 Replies

6. UNIX for Dummies Questions & Answers

Easy one

Hi This is going to sound so easy to some of you out there... trying to copy and paste lines to an existing script - is there a command that i can use that overwrites the existing text there? Cheers (11 Replies)
Discussion started by: vcardo10
11 Replies

7. Shell Programming and Scripting

shell script : text manipulation (easy quesiton)

hi, i am newbie in shell script i want to do the following: given a filename like abc.txt i want to change the name to abc.properties how to do it? pls enligthen me. thanks (3 Replies)
Discussion started by: champion
3 Replies
Login or Register to Ask a Question