Tagged Questions
4
votes
2answers
495 views
What's a safe and portable way to split a string in shell programming?
When writing a shell script, I often want to split a string. Here's a very simple example:
for dir in $(echo $PATH | tr : " "); do
[[ -x "$dir"/"$1" ]] && echo $dir
done
This will ...
1
vote
1answer
344 views
Reading the contents of the file and splitting using ksh
We're using a ksh script for installing one product.
I've another config file, I'd need to read this configuration file from my main script
Content of the Configuration file:
...
1
vote
4answers
4k views
Splitting string by the first occurrence of a delimiter
I have a string in the next format
id;some text here with possible ; inside
and want to split it to 2 strings by first occurrence of the ;. So, it should be: id and some text here with possible ; ...