Search Results

Search: Posts Made By: JoBa
2,003
Posted By JoBa
See also this page...
See also this page (http://www.webmasters-central.com/t/cron.shtml) for a handy crontab tutorial.
4,491
Posted By JoBa
If you do a search on this forum you will find...
If you do a search on this forum you will find some usefull results, RTM just aswered the same question 5 days ago. See this threat (https://www.unix.com/showthread.php?s=&threadid=14620).

As for...
8,497
Posted By JoBa
You can also try the paste command. paste...
You can also try the paste command.

paste file1 file2
8,497
Posted By JoBa
You can use -o option to specify the fields you...
You can use -o option to specify the fields you want to see in the output.

join -o 1.1 1.2 2.1 2.2 file1 file2

will show the first two fields for both files in one line.

Try man join.
2,000
Posted By JoBa
Hello user1, Perderabo wrote an already...
Hello user1,

Perderabo wrote an already famous scripts which will probably help you a lot. Click here (https://www.unix.com/showthread.php?s=&postid=16559#post16559).
6,661
Posted By JoBa
Hello Jorge I think it would be better to...
Hello Jorge

I think it would be better to label your tapes in order to be able to identify them.
The command to write a label to the tapes obviously depends on your O.S.
16,363
Posted By JoBa
Hello rao, You should make sure the command...
Hello rao,

You should make sure the command lines in the ftp section of the scripts don't start with the space character.
2,643
Posted By JoBa
Hello gtapia You can try this command: ...
Hello gtapia

You can try this command:

split -l `wc -l yourfile | awk '{print $1/N'` yourfile

You can replace N by any number.
15,484
Posted By JoBa
Hello Bridgeje, One possibility is to open...
Hello Bridgeje,

One possibility is to open the file in vi and do the following:

:%s/"DH"/^M"DH"/g

for ^M you should type ctrl v, crtl enter
4,301
Posted By JoBa
girish_shukla, are you using a Sybase ASE ? ...
girish_shukla, are you using a Sybase ASE ?

If you are, this is a Sybase Transact SQL command to restore database STS_IN_PRD with data stored in the file "/STSDBBakup/ AEOD20030509"
7,829
Posted By JoBa
truncate
Truncate is a progress command to defragment a progress database.

You can use it like this.

proutil <database_name> -C truncate bi

Make sure you shut down the database before you start the...
13,231
Posted By JoBa
Pherhaps this script can help you: ...
Pherhaps this script can help you:

#!/bin/ksh

for row in `tail +3 your_file | awk '{print $2}'`
do
echo "$row;\c" >your_new_file
done
8,491
Posted By JoBa
Hello, I think this is what you want: ...
Hello,

I think this is what you want:

var=$1
var=`echo $var | awk '{print $1 *100}'`
echo $var
49,162
Posted By JoBa
Thanks Perderabo, The '\c' did the trick.
Thanks Perderabo,

The '\c' did the trick.
49,162
Posted By JoBa
How to place the output of two different echo statements on one line
Hello there,

I wrote a shell script to modify the code for some of our clients in our client database. Before starting the data modification the program performs a few checks.

When a check is...
31,755
Posted By JoBa
Maybe you can try this simple menu (this is...
Maybe you can try this simple menu (this is origanally for AIX)


#
# Main loop
#
while [ 1 ]
do
cat <<-EOT

1. start programm 1
2. start programm...
Showing results 1 to 16 of 16

 
All times are GMT -4. The time now is 06:20 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy