1
vote
1answer
38 views
vi editor query
I use vi quite often to edit files.
Usually I need the file to appear on screen with line numbers.
For this I do
set nu in edit mode.
What a drag! Can I automate this? Is there an …
0
votes
2answers
31 views
Korn Shell - Creating a fixed width text file
I need to create a simple fixed width text file in KShell. My current attempt using printf to pad the string isn't working out very well. What's the shortest, cleanest way to cre …
0
votes
2answers
56 views
Korn Shell Printf - Padding a string
I'm attempting to write a Korn Shell function that uses printf to pad a string to a certain width.
Examples:
Call
padSpaces Hello 10
Output
'Hello '
I currently have:
…
1
vote
3answers
98 views
ksh: Iterate through a range
How can I iterate through a simple range of ints using a for loop in ksh?
For example, my script currently does this...
for i in 1 2 3 4 5 6 7
do
#stuff
done
...but I'd like …
0
votes
1answer
21 views
Redirection to a strange file descriptor no.
I came across a working ksh script [interactive] today, where I saw the below statement.
printf "Enter the release no. : " >&5
I wonder the use o …
0
votes
2answers
89 views
In UNIX shell scripting: What is $! ?
What is the meaning for $! in shell or shell scripting? I am trying to understand a script which has the something like the following.
local@usr> a=1
local@usr> echo $a
1
lo …
0
votes
5answers
73 views
Comparing strings for equality in ksh
Hello,
i am testing with the shell script below:
#!/bin/ksh -x
instance=`echo $1 | cut -d= -f2`
if [ $instance == "ALL" ]
then
echo "strings matched \n"
fi
It's giving this e …
0
votes
1answer
15 views
KShell background task not showing in jobs
I've written a simple KShell script to kick off a background task
#/bin/ksh
#startMonitoring
./detectFile /usr/local/data/testFile > fileHistory &
I run it with the fol …
1
vote
3answers
81 views
SSH - ksh: git: not found
I have GIT running on a Solaris server.
From a windows machine I installed cygwin to try to clone a repository hosted on the server.
I do the following:
$ git clone username@se …
1
vote
4answers
129 views
identify the exact header file
I am using some macro in my source file (*.c ) .
Is there any way during compilation or from the library that I can identify the exact header file from which this particular macro …
0
votes
1answer
72 views
How can I catch Sybase bcp errors reliably?
We're using named pipes with Sybase bcp so that we can compress output on-the-fly.
This is a paraphrase of the error handling idiom, some error checking in the non-bcp parts of th …
1
vote
4answers
156 views
Best tool in unix for viewing large files
I am a novice in unix.
i am facing a problem in viewing big log files in unix using Vi tool.
could you please suggest the best tool for fast viewing of big files on unix.
Request y …
0
votes
5answers
62 views
Problem in running a script
i have unix shell script which is need to be run like below
test_sh XYZ=KLMN
the content of the script is
#!/bin/ksh
echo $XYZ
for using the value of XYZ i have do set -k …
1
vote
2answers
47 views
home, end, delete, pageup, pagedown with ksh
Hello.
I want to use home, end, delete, pageup, pagedown with ksh. My TERM is
xterm-color. These keys works fine with tcsh and zsh, but not with ksh
(print a tilde ~)
I found t …
5
votes
6answers
508 views
Monitor folder for new files using unix ksh shell script or perl script and trigger perl script
I've been Googling and Overflowing for a bit and couldn't find anything usable.
I need a script that monitors a public folder and triggers on new file creation and then moves the …
