Summary: Had a little posting error with the spaces - will try again ... The green lines will display all values accumulated for the value being checked for: ...
Summary: I'm trying to copy several files generated by a fortran program to their correct directories within a script. The problem is that I want to rename tho...
Summary: I'm having a problem following your awk code. One thing is sure: you can NOT embed other shell commands like mv inside an awk script - not without us...
Summary: Hi! I just wonder if anyone can help me. I'm trying to write a shell script, but don't know where to begin exactly. I need to write a script that wil...
Summary: Hi Im trying to concatenate a specific file from each day in a year/month/day folder structure using Bash. The file structure ends up like this: 2009...
Summary: Correct on the varying number of spaces. The cut command is using each space as a field delimiter, so a bunch of spaces makes for a bunch of null fie...
Summary: Urgent... How do I compare the name of the file with the system date? For example: I have a file named "abc-12282005.dat" and need to compare the da...
Summary: I ve found on internet a message about problem with redirection & NFS under Linux . It seems to be the same problem . My shell run correctly under PTX...
Summary: Hi: There's always more than one way of doing something. Solaris has a cksum command which returns a 32-bit CRC of a file. You can almost guarantee ...
Summary: it depends upon the umask set on the server where u are ftping the file too. If the umask is set something like 022 then even if you ftp the file with...
Summary: Hello everyone, Currently I use 3 steps to download/upload files UNIX server designated mailbox: 1. Manual: by using HyperTerminal on NT side to tran...
Summary: I need to replace anything immediately after the pattern "standard01/" in a file with the value of a variable I don't know the length of the characte...
Summary: The init.ora file for the database has a parameter called utl_file_dir which is a list of directories that plsql can access. You need to do an ascii t...
Summary: standard way to handle this classic problem is, when sqlplus processing is complete: mv thisfile thisfile.done and, of course, make sure the script ...
Summary: datevar=$(date '+%m%y') var=somevariable con=someconstant filename=${var}${con}${datevar}.app To get the filename into each row loaded, maybe you coul...
Summary: Hi, I was wondering if anybody knew how to make a shell script that will make a backup of a file example (mv out out.bak) but the next time you run th...
Summary: Hi guys, I am very new to the shell scripting .... I have a text file with 5 columns and all colums are seperated by some spI need to capture all indi...
Summary: Hi, I have an env file with multiple lines separated by semicolon. I would like to retrieve a particular line from the file, extract each field separa...
Summary: The best way is to avoid getting them in the file in the first place. The most common way this happens is that you ftp the file with the wrong option...
Summary: Hi, I want to excute a shell script by passing a CSV file as argument, where the file name will be based on the file that is been placed in a particul...
Summary: Hi all, How easy or difficult would it be to write a plain text encryption/decryption shell script to a most basic level? Text would be stored in a fi...
Summary: You can write to the same file with perl : perl -p -i -e "s@salesforcefile=.*@salesforcefile=/opt/AMS/eINcent/live/in/$1@g" file Jean-Pierre. ...