Tagged Questions
1
vote
2answers
130 views
Variable name from command output
I have some string, and want to split on colon ":" assigning on variable with name from left part and value from right part. For example:
echo "Title: Some title" | sed 's/:.*//'
gives me wanted ...
0
votes
2answers
217 views
Checking if PATH contains $HOME/mydir and adding it if not (all in a script) [duplicate]
Possible Duplicate:
keep duplicates out of $PATH on source
I am not an expert with Unix scripting. Some of my scripts are located in $HOME/mydir. Unfortunately, they are not accessible from ...