Search Results

Search: Posts Made By: rajdeep_paul
3,825
Posted By rajdeep_paul
Thanks a lot chacko193...
Thanks a lot chacko193 (https://www.unix.com/members/302125853.html) !!
3,825
Posted By rajdeep_paul
How can multiple arguments be passed to shell script?
My requirement is that I want to pass similar argument to a shell script and process it in the script. Something like below:

myScript.sh -c COMPONENT1 -c COMPONENT2 -a APPNote: -c option can...
3,684
Posted By rajdeep_paul
Try using the authorized_keys concept and once...
Try using the authorized_keys concept and once you make an ssh using the root password, next time onwards, it'll not ask the root password.
49,841
Posted By rajdeep_paul
Learnt something very nice today. Thanks people.
Learnt something very nice today. Thanks people.
14,703
Posted By rajdeep_paul
go for rcp man.....dont make the process...
go for rcp man.....dont make the process complicated...
2,175
Posted By rajdeep_paul
I guess a little changes in the code by replacing...
I guess a little changes in the code by replacing "," with some other special character and a bit of tweak in Excel as well is needed to get this done. :)
5,415
Posted By rajdeep_paul
sumi_mn, I think till you provide the sample...
sumi_mn, I think till you provide the sample data, a concrete solution cannot be given.
2,175
Posted By rajdeep_paul
Instead of comma separated, try pipe separated...
Instead of comma separated, try pipe separated and open the file in excel by going to Data ->Import External Data

pkginfo -l |
awk -F": " '
/NAME:/{s=$2}
/DESC:/{s=s "|" $2}
/STATUS:/{print...
21,858
Posted By rajdeep_paul
I tried running the code in my machine, it just...
I tried running the code in my machine, it just works fine. Below is the code that i tried
#!/bin/bash

#=============================================
# data recovery attempt for HFS/HFS+ Drives...
11,332
Posted By rajdeep_paul
I guess since your script was running in...
I guess since your script was running in background as
nohup ksh rep_check &
and maybe after that the session was somehow killed, so your script was running under root.
76,723
Posted By rajdeep_paul
for the first post wherein you were trying to...
for the first post wherein you were trying to delete, the code should be as below.
find /my/path/ -type d –ctime +5 –exec rm -r {} \;
rm is used to delete a file. For a directory structure having...
3,652
Posted By rajdeep_paul
Problem with Loop
Use "ne" instead of "!=" in the condition. "!=" works out only for numbers.


#!/usr/bin/perl

$exp = "y";

while ($exp ne "n") {

system "clear"; # clear the window

print...
Showing results 1 to 12 of 12

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