Sponsored Content
Full Discussion: Shell Developer Needed
Top Forums Shell Programming and Scripting Shell Developer Needed Post 302930175 by sea on Wednesday 31st of December 2014 04:28:15 AM
Old 12-31-2014
Seriourlsy, first post, and want us to do your project?

What have you done so far?
Where is the project site?
What will be the license?
Will there be a contract?
Are you certain to write a VOIP application and require SHELL - as in BASH/KSH/ZSH?
I've done a Text Interface using SHELL, so i guess i'm capable to say that a VOIP is not possible using SHELL only, unless you do some real coding for the backend - to make it usable in the shell - which is not the same.

Give us some more infos!

Happy holidays

EDIT:
To me, your request falls into the same cathegory like:
"Me want to do a new OS, you do the coding and me do the marketing, but me havent done anything yet, you do it and we share when it gives money..."

Last edited by sea; 12-31-2014 at 05:39 AM..
This User Gave Thanks to sea For This Post:
 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Shell help needed

Could someone tell me how to do the below in Korn Shell or SED? If the 1st word (i.e. 1st character to the one character before the 1st space) of a line is the same as the 1st word of the 2nd line then add the 3rd word of the 1st line and the 3rd word of the 2nd line and divide the sum of the... (11 Replies)
Discussion started by: stevefox
11 Replies

2. Shell Programming and Scripting

K Shell Help needed

Could someone tell me the code for doing the below inside a k shell? I have a file file below: $ more file1 >>>>> AAA BBB CCC <<<<< >>>>> DDD EEE FFF <<<<< I want the lines between ">>>>>" and "<<<<<" to be one line like below: AAA BBB CCC (2 Replies)
Discussion started by: stevefox
2 Replies

3. Shell Programming and Scripting

Help needed - shell scripting

I have a file that has text in the format below ABC / Some text / ABC / Some text / ABC / Some text / ABC / Some text / ABC / Some text / How can I seperate the text between a pair of 'ABC' into seperate files ??? any information would be of great help. Thanks (8 Replies)
Discussion started by: garric
8 Replies

4. Shell Programming and Scripting

shell script help needed

I am trying to query a table having 3 columns, the third column is a field of varchar(1024) with a SQL string in it. I am using cut command to split out the three fields into three variables. I do a db2 command to extract the data into a file. My problem is with the third field having the SQL... (3 Replies)
Discussion started by: fastgoon
3 Replies

5. Shell Programming and Scripting

Help needed for Shell Script.....

Hello Friends, Can you pls advice me on the following requirement: What we'd like to achieve is the following: - having a password.properties file which contains some passwords, e.g. BOT_PASSWORD=dog.name - in the configuration file, insert as the password value something like... (0 Replies)
Discussion started by: pulkit
0 Replies

6. UNIX for Dummies Questions & Answers

Unix shell script Certification for oracle developer.

hi friends, I would like to do the certification in Korn shell scripts { i am using HP UNIX machine }. is there any certification for UNIX shell script . If yes please tell me the details . i am junior level oracle plsql developer . i interseted in unix shell scripting . i need... (1 Reply)
Discussion started by: rdhaprakasam
1 Replies

7. Shell Programming and Scripting

Help Needed on shell script

#!/bin/sh #Displaying every argument while ; do echo Moving file $0; shift; done exit 0; For the above script i get the below o/p when 2 arguments are passed when invoking the script dmlFileCopy.sh: line 3: Can you let me know how to rectify the error? (2 Replies)
Discussion started by: Anand86
2 Replies

8. UNIX for Dummies Questions & Answers

Help needed with Shell script

Hi I want a script which should basically do 1. If the size of the file is 0kb, send email to some list od ppl 2. if the size of the file is other than 0kb send email to someother list... Pls help (2 Replies)
Discussion started by: win4luv
2 Replies

9. Shell Programming and Scripting

Help Needed with Shell Script

I need help writing a Unix shell script that does the following: 1) Searches all of the files in a given directory that have the .acl file extension 2) Redirects the output of the search to a column in a .xls or .cvs file (Note: The column name in the spreadsheet file needs to be named... (2 Replies)
Discussion started by: ijmoore
2 Replies
GITCVS-MIGRATION(7)						    Git Manual						       GITCVS-MIGRATION(7)

NAME
gitcvs-migration - Git for CVS users SYNOPSIS
git cvsimport * DESCRIPTION
Git differs from CVS in that every working tree contains a repository with a full copy of the project history, and no repository is inherently more important than any other. However, you can emulate the CVS model by designating a single shared repository which people can synchronize with; this document explains how to do that. Some basic familiarity with Git is required. Having gone through gittutorial(7) and gitglossary(7) should be sufficient. DEVELOPING AGAINST A SHARED REPOSITORY
Suppose a shared repository is set up in /pub/repo.git on the host foo.com. Then as an individual committer you can clone the shared repository over ssh with: $ git clone foo.com:/pub/repo.git/ my-project $ cd my-project and hack away. The equivalent of cvs update is $ git pull origin which merges in any work that others might have done since the clone operation. If there are uncommitted changes in your working tree, commit them first before running git pull. Note The pull command knows where to get updates from because of certain configuration variables that were set by the first git clone command; see git config -l and the git-config(1) man page for details. You can update the shared repository with your changes by first committing your changes, and then using the git push command: $ git push origin master to "push" those commits to the shared repository. If someone else has updated the repository more recently, git push, like cvs commit, will complain, in which case you must pull any changes before attempting the push again. In the git push command above we specify the name of the remote branch to update (master). If we leave that out, git push tries to update any branches in the remote repository that have the same name as a branch in the local repository. So the last push can be done with either of: $ git push origin $ git push foo.com:/pub/project.git/ as long as the shared repository does not have any branches other than master. SETTING UP A SHARED REPOSITORY
We assume you have already created a Git repository for your project, possibly created from scratch or from a tarball (see gittutorial(7)), or imported from an already existing CVS repository (see the next section). Assume your existing repo is at /home/alice/myproject. Create a new "bare" repository (a repository without a working tree) and fetch your project into it: $ mkdir /pub/my-repo.git $ cd /pub/my-repo.git $ git --bare init --shared $ git --bare fetch /home/alice/myproject master:master Next, give every team member read/write access to this repository. One easy way to do this is to give all the team members ssh access to the machine where the repository is hosted. If you don't want to give them a full shell on the machine, there is a restricted shell which only allows users to do Git pushes and pulls; see git-shell(1). Put all the committers in the same group, and make the repository writable by that group: $ chgrp -R $group /pub/my-repo.git Make sure committers have a umask of at most 027, so that the directories they create are writable and searchable by other group members. IMPORTING A CVS ARCHIVE
First, install version 2.1 or higher of cvsps from http://www.cobite.com/cvsps/ and make sure it is in your path. Then cd to a checked out CVS working directory of the project you are interested in and run git-cvsimport(1): $ git cvsimport -C <destination> <module> This puts a Git archive of the named CVS module in the directory <destination>, which will be created if necessary. The import checks out from CVS every revision of every file. Reportedly cvsimport can average some twenty revisions per second, so for a medium-sized project this should not take more than a couple of minutes. Larger projects or remote repositories may take longer. The main trunk is stored in the Git branch named origin, and additional CVS branches are stored in Git branches with the same names. The most recent version of the main trunk is also left checked out on the master branch, so you can start adding your own changes right away. The import is incremental, so if you call it again next month it will fetch any CVS updates that have been made in the meantime. For this to work, you must not modify the imported branches; instead, create new branches for your own changes, and merge in the imported branches as necessary. If you want a shared repository, you will need to make a bare clone of the imported directory, as described above. Then treat the imported directory as another development clone for purposes of merging incremental imports. ADVANCED SHARED REPOSITORY MANAGEMENT
Git allows you to specify scripts called "hooks" to be run at certain points. You can use these, for example, to send all commits to the shared repository to a mailing list. See githooks(5). You can enforce finer grained permissions using update hooks. See Controlling access to branches using update hooks[1]. PROVIDING CVS ACCESS TO A GIT REPOSITORY
It is also possible to provide true CVS access to a Git repository, so that developers can still use CVS; see git-cvsserver(1) for details. ALTERNATIVE DEVELOPMENT MODELS
CVS users are accustomed to giving a group of developers commit access to a common repository. As we've seen, this is also possible with Git. However, the distributed nature of Git allows other development models, and you may want to first consider whether one of them might be a better fit for your project. For example, you can choose a single person to maintain the project's primary public repository. Other developers then clone this repository and each work in their own clone. When they have a series of changes that they're happy with, they ask the maintainer to pull from the branch containing the changes. The maintainer reviews their changes and pulls them into the primary repository, which other developers pull from as necessary to stay coordinated. The Linux kernel and other projects use variants of this model. With a small group, developers may just pull changes from each other's repositories without the need for a central maintainer. SEE ALSO
gittutorial(7), gittutorial-2(7), gitcore-tutorial(7), gitglossary(7), Everyday Git[2], The Git User's Manual[3] GIT
Part of the git(1) suite. NOTES
1. Controlling access to branches using update hooks file:///usr/share/doc/git-1.8.3.1/howto/update-hook-example.txt 2. Everyday Git file:///usr/share/doc/git-1.8.3.1/everyday.html 3. The Git User's Manual file:///usr/share/doc/git-1.8.3.1/user-manual.html Git 1.8.3.1 06/10/2014 GITCVS-MIGRATION(7)
All times are GMT -4. The time now is 01:56 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy