Search Results

Search: Posts Made By: candlejack
83,806
Posted By candlejack
The emergency board might not have taken off...
The emergency board might not have taken off because it is towards the bottom of the screen. Maybe it should be moved up? I found it today by happenstance. Just a suggestion.
14,050
Posted By candlejack
Please post the output of: sudo find / -name...
Please post the output of:
sudo find / -name grub.conf -print
10,183
Posted By candlejack
Check out this post: ...
Check out this post: https://www.unix.com/shell-programming-scripting/14735-parsing-string-shell-script.html
2,471
Posted By candlejack
Great suggestion is to learn Perl. Pick up...
Great suggestion is to learn Perl. Pick up "Learning Perl" (aka "The Llama Book"). Perl is a great skill to have.

Also I would recommend learning sed and awk. And brushing up on your shell...
1,688
Posted By candlejack
Once you have the file you can name it anything...
Once you have the file you can name it anything you wish. Also, it shouldn't be a problem that the FTP server is running on a Windows box.

Good luck
1,688
Posted By candlejack
You can get the date format in the way you...
You can get the date format in the way you specified using this:

date "+%m%d%y"

So you could set the filename like this:

FILENAME=`date "+%m%d%y"00.SUP`
Forum: Solaris 06-21-2009
2,064
Posted By candlejack
Directory read - you can list the contents of...
Directory read - you can list the contents of that directory
Directory execute - you can run programs that are in that directory
14,851
Posted By candlejack
In theory... If you know the port number,...
In theory...

If you know the port number, you can see what process uses that port by grepping in /etc/services. Then, once you have that process name, you can


ps -ef | <process name>

...
Forum: Red Hat 05-26-2009
3,231
Posted By candlejack
Have a look at this post from another forum and...
Have a look at this post from another forum and see if it works for you: RESOLVED: how to configure yum to get through proxy? - FedoraForum.org...
1,538
Posted By candlejack
You would use a \ to escape a special character...
You would use a \ to escape a special character such as a / You'd put this before the special character. So you would escape it like this:


\/
Forum: AIX 05-23-2009
19,350
Posted By candlejack
I definitely wouldn't delete that file, but...
I definitely wouldn't delete that file, but reducing it is OK else it'll fill up /var
23,404
Posted By candlejack
Oh snap, that's an old post. Just noticed that.
Oh snap, that's an old post. Just noticed that.
23,404
Posted By candlejack
Sometimes the man pages aren't that great, but at...
Sometimes the man pages aren't that great, but at least you started there! :b: Anyway...

A process can be over 100% if it is running on a multi-core processor.

A Nice value is essentially...
10,232
Posted By candlejack
Sadly, they shut down the testdrive thing. I...
Sadly, they shut down the testdrive thing. I thought it was pretty good if you needed to get familiar with HP-UX.
10,232
Posted By candlejack
Might also see if your company has an old HP-UX...
Might also see if your company has an old HP-UX box laying around that they don't use. They might let you use it while you are learning. Also sometimes you can find good buys on eBay - people are...
16,248
Posted By candlejack
One thing you might do when you change your...
One thing you might do when you change your script is to create the file with the PID appended to the filename.
16,248
Posted By candlejack
That was just a thought, but in actuality,...
That was just a thought, but in actuality, `nohup` processes are owned by init (PID=1). Is it possible that it's a zombie? Try ps -eaf | grep defunct Also, what kind of UNIX / Linux are you on?
16,248
Posted By candlejack
Who owns the files that are being created? Can...
Who owns the files that are being created? Can you do a ps -eaf | grep <owner of files>
16,248
Posted By candlejack
How are you trying to find the job? ps -eaf...
How are you trying to find the job?

ps -eaf | grep assoc.sh
Forum: Fedora 05-22-2009
41,648
Posted By candlejack
matt@matt-macbook$ cat math.sh #!/bin/sh ...
matt@matt-macbook$ cat math.sh
#!/bin/sh

NUMBER1=10
NUMBER2=5

((sum=NUMBER1-NUMBER2))
echo $sum
echo "\n"

((difference=NUMBER1-NUMBER2))
echo $difference
echo "\n"
...
6,622
Posted By candlejack
Try this to get you going: ...
Try this to get you going:


matt@matt-macbook$ cat test.f
ID=10
ID=10
ID=1
ID=1
ID=3
ID=4
ID=3
ID=3
ID=3
ID=
ID=3
ID=4
matt@matt-macbook$ grep -e ID=[0-9] test.f | sort | uniq
ID=1...
7,813
Posted By candlejack
Here's one way using awk: ...
Here's one way using awk:


matt@macbook-home$ cat test.f
12345
67890


matt@macbook-home$ awk '{if (NF>0) print}' test.f
12345
67890
matt@macbook-home$
You can redirect that output to...
83,806
Posted By candlejack
Bits - The Unix and Linux Forums (Experimental) Virtual Currency
Hello. I've searched the site but can't find a link to what the "Bits" and "bank account" is on my user profile. Can someone link me or briefly explain?
5,317
Posted By candlejack
It was suggested here...
It was suggested here (https://www.unix.com/sun-solaris/93855-creating-man-page-command.html) to try to put the man page in /usr/local/man and set your MANPATH env variable. Would this be possible?
7,262
Posted By candlejack
#!/bin/bash for i in `find . -name...
#!/bin/bash

for i in `find . -name "index.*"`
do
cp $i $i.1Mar09;
done
Showing results 1 to 25 of 52

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