Searching for bash to cshell convertor


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Searching for bash to cshell convertor
# 1  
Old 02-09-2011
Searching for bash to cshell convertor

Hi ,I have seen this comverters before ,but I was searching today and I can not find them .Is anybody used them before .Any recomendations
Thanks
# 2  
Old 02-09-2011
Why should you do that? Most people are trying to do the reverse...

https://www.unix.com/shell-programmin...d-harmful.html
# 3  
Old 02-09-2011
I need to code in C shell for a project and I have simmilar script in bash
Thanks
# 4  
Old 02-09-2011
There are lots of csh to bash script conversion tools out there but I have never come across a good tool to convert bash scripts to csh. For one thing, many of the more advanced bash features are not present in the standard csh.
# 5  
Old 02-09-2011
i think it's like conversion from an .exe to source code. it's a strange thing.
# 6  
Old 02-09-2011
Quote:
Originally Posted by lio123
I need to code in C shell for a project
It's not C-shell isn't our preferred shell... It's not even that it's obstreperous, unportable, and lacks functionality... It's that it's so very obstreperous, so very unportable, and lacks so much functionality. Depending on the features these BASH scripts use, "translating" them may amount to rewriting them from scratch.

Why do you have to use the C-shell? Is there some educational institution, line of books, corporate employer, evil overlord, or alien invader mandating its use? Someone we can talk to and convince to stop bothering the world.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Searching for a member of an arrray Bash 3.2 with a @..

Creating the array. while read line do array+=("$line") done < "$temporary_file" This is the basic idea, but not working at the moment. It just seems to be returning "No such file or directory" for each array member for (( i = 0 ; i < "${#array}"; i++ )); do if grep "@"... (7 Replies)
Discussion started by: briandanielz
7 Replies

2. Shell Programming and Scripting

How to Reverse a sentence in linux ? (bash/cshell)

hey all, If I have the given sentence. I like bobo. How could I reverse it to be : .bobo like I I am NOT talking about reversing words or characters by using rev. I am talking about reversing the whole sentence(placement of words in the given sentence). thank you. (5 Replies)
Discussion started by: eawedat
5 Replies

3. Shell Programming and Scripting

20th based convertor

Hi, I'm new at Linux shell programming so I could use some help. I need to make a 20thdecimal convertor. Is just like hexadecimal, the only difference is that hexadecimal goes from 1-9 and A-F, and I need this one to go from 1-9 and A-J. I got some already but I get endless loop, please take a... (7 Replies)
Discussion started by: Dax01
7 Replies

4. Shell Programming and Scripting

Performing fast searching operations with a bash script

Hi, Here is a tough requirement , to be served by bash script. I want to perform 3,00,000 * 10,000 searches. i.e. I have 10,000 doc files and 3,00,000 html files in the file-system. I want to check, which of the doc files are referred in any html files. (ex- <a href="abc.doc">abc</a>)... (3 Replies)
Discussion started by: jitendriya.dash
3 Replies

5. Shell Programming and Scripting

Bash script for searching a string

Hi, I have a file that contains thousands of records. Each record starts with "New Record". I need to search this file based on a given value of "timestamp" and write all the records that match this timestamp into a new file. I was able to locate the existence of a given value of timestamp using... (10 Replies)
Discussion started by: shoponek
10 Replies

6. UNIX and Linux Applications

web to wap convertor

cld someone suggest a good web to wap convertor (1 Reply)
Discussion started by: viapillai
1 Replies

7. Shell Programming and Scripting

Searching Bash Arrays

Hi, I am writing a bash shell script. I would like to execute a statement only if an array contains a specific value. For example: array=(1 3 5 7) I would like to execute the statement only if the value 3 is present in ${array}. Thanks for any help, Mike (1 Reply)
Discussion started by: msb65
1 Replies

8. Programming

Binary to Text Convertor

Hey Im starting out in C just recently and Im needing a string that converts binary to text, The only way i know of doing this without knowledge of C entirely. Is Making a sorta of library of the entire alphabet in binary for the program to select the text from it to display a sentence. If that... (2 Replies)
Discussion started by: 01doublehelix10
2 Replies

9. Shell Programming and Scripting

Perl to C convertor

Is there one out there that supports Perl/Tk ??? (5 Replies)
Discussion started by: perleo
5 Replies
Login or Register to Ask a Question