Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
sftp connect syntax..in shell scrip
Name: livetaurean19 Date: June 15, 2005 at 11:03:35 Pacific OS: unix CPU/Ram: unsure
Comment:
Hi all, I'm very new to UNIX so request you to be AS CLEAR as you can. I've to use the following command using a PRINT and piping it, so as to avoid exposing the passwords.
I know the syntax as print " commands .... " | sftp ..........>> ... but I'm not able to relate it here, cuz there being no other commands if I put sftp within the braces then sftp command does not get executed. Any help would be appreciated..
Summary: Hi, I'm trying to run loops in shell scripts using the following script. loop=1 while [ loop -lt 10 ] do echo 'this is my $loop text-line' loop='expr $loop + 1' done ---- but I'm getting error: test: ...
Summary: In shell script sed or awk command, can I use hexadecimal code for substitution? I want to perform the following: Input file: Line1 Line2 Line3 Line4 Output file: (all in one line now) Line1Line2Line...
Summary: Dear all, I wonder how to find the size of an array in shell script. For example, I declared an array as following: #! /bin/sh a = (1 adf 8 2 se) How could I get the size of the array a? I had searche...