|
|
|
#1 (permalink) | |||||||||||||
|
Apple Doesn't Love You
|
I'm starting to use shell scripting more and more. I know most of what I need to know so I don't want to use some big tutorials. I have a few questions and I was wondering if there is anybody experienced that I could ask via PM
|
|||||||||||||
|
|
|
|
#2 (permalink) | |||||||||||||
|
Windows Wrangler
|
Why not ask publicly?
![]()
__________________
|
|||||||||||||
|
|
|
|
|
#3 (permalink) | |||||||||||||
|
4.0 GHz
|
*** is shell scripting?
|
|||||||||||||
|
|
|
|
|
#4 (permalink) | |||||||||||||
|
Apple Doesn't Love You
|
I have a few questions that are all parts of a larger project and a dialog is what I need more so than a forum
|
|||||||||||||
|
|
|
|
#5 (permalink) | |||||||||||
|
Programmer
|
Shell Scripting is kinda like a Linux version of a batch file in Windows.
__________________Except in linux, you actually use them.
|
|||||||||||
|
|
|
|
|
#6 (permalink) | ||||||||||||||
|
Turing Test is Overrated
|
Learning Shell Script myself now for my job.... won't be able to help for at least 2 more months!
For kidwolf, here's an example: Code:
while getopts "f:p:l:c:h" opt
do
case $opt in
f) inputFile=$OPTARG
echo " File Name = [$inputFile]"
;;
p) phaseDate=$OPTARG
echo " Phase Date = [$phaseDate]"
;;
l)
loopTimeInterval=$OPTARG
echo " Loop Time Interval = [$loopTimeInterval]"
;;
c)
loopCount=$OPTARG
echo " Loop Count = [$loopCount]"
;;
h|*)
usage
return 0
;;
esac
done
if [ "$inputFile" ="NULL" -o "$phaseDate" = "NULL"]
then
usage
fi
datetime=`date +"%y%m%d%H%M%S"`
echo " Date Time Stamp = [$datetime] "
return 0
}
__________________
WANTED: Socket M Core/Core 2 CPU, SUGO-02 Black, quality 802.11b/g PCI Card To answer most of your questions: (1) a fridge cannot cool a PC (2) 64-bit OS for over 3.4GB (3) If a PCIe card fits, it will work (4) Resolution, not screen size (5) If you have a question, it is not news (6) Report, not respond to Spam (7) Single/Non-Modular Rail PSUs are NOT better than Multi-Rail/Modular Quote:
|
||||||||||||||
|
|
|
|
#7 (permalink) | ||||||||||||||
|
Photography nut
![]() |
Have some experiance writing UNIX shell scripts. All just depends on how advance you already are into.
__________________
"UNIX was never designed to keep people from doing stupid things, because that policy would also keep them from doing clever things." - Doug Gwyn Try out the latest Programming Challenge Quote:
CPU-Z Validation @ 2.97-prime95 stable 16 hours @ 1.48v Proof | CPU-Z Validation @ 3.15 Getting Mouse Side Buttons to work in Linux, Compile a custom Kernel, More
|
||||||||||||||
|
|
|
|
#8 (permalink) | |||||||||||||
|
Apple Doesn't Love You
|
I found out that we will be covering a lot of shell scripting in class so I'm just gonna ask my teacher. Thanks anyway - it's always good to know that there are people here who know stuff
|
|||||||||||||
|
|
|
|
#9 (permalink) | |||||||||
|
Programmer
|
read my sig...
its true... i find C++ better to deal with than shell...
__________________
My Lego case thread. With PICS!!! ----------------------------------------------------------------------- Video card RMA database thread. I am working on an application that allows users to input their cards issues into a database, to build a knowledge base for what types of cards have a lower fail rate.
|
|||||||||
|
|
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
|
|