Search Results

Search: Posts Made By: millan
2,310
Posted By millan
You can use nohup command to put one of your...
You can use nohup command to put one of your script to background while other will continue to run in the foreground.


nohup ./scone &
20,834
Posted By millan
The only way is to use key authentication.
The only way is to use key authentication.
2,650
Posted By millan
You have to use bc command and also during...
You have to use bc command and also during variable interpolation use $before variable name.


echo "$a+($b/20*$c)+($c/10*$d)" | bc
13,074
Posted By millan
You can use commands in your script. ...
You can use commands in your script.


bash-3.00$ comm -23 a.xml b.xml | sed '1d'
<type1>3</type1>
bash-3.00$ comm -13 a.xml b.xml | sed '1d'
<type1>1</type1>
<type2>567</type2>
bash-3.00$...
3,037
Posted By millan
You have to write the first if clause as below. ...
You have to write the first if clause as below.


if ([ "$ServerName" = "usei01" ]|| ["$ServerName" = "usei02" ]|| ["$ServerName" = "usei03" ]);then

;then should be in one line
Showing results 1 to 5 of 5

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