Hi all
I am working on disallowing users to use easy passwords in pam.d setting on RHEL 5.7 and SuSe 11, and I was hoping to add more words into the current cracklib dict, so I use "echo" command to append new words into the file
I dont want to add the same words into the dict, I think I have too many redundant words now.
Ladies and Gents, I've noticed that there are a few french-speaking people on these forums, wading their way through topics with bad or mediocre english.
I'm a native english-french bilingual, so if there a post you guys don't understand or want translated, do not hesitate to ask me.
-----------
"You can overclock as much as you want, your phone will always seem too slow."
Hello Everyone,
Im a linux newbie and Im trying to create a very basic script that will echo a question like "What is your name?" but i would like for the question not to echo the whole sentence at once but word by word or even character by character, in other words to give the illusion that the computer is actually typing the question.I hope this makes sense.
the program I had looks like this:
def wordToNumber(word):
if word == "one":
return 1
elif word == "two":
return 2
elif word == "three":
return 3
elif word == "four":
return 4
elif word == "five":
return 5
elif word == "six":
return 6
Hi everyone, I'm trying to make a csh script analog for grep.
I need to run through the directory which is arg[1], find a word (arg[2]) in the files, and echo their names.
Here's what I got
Code:
if ($#argv != 2) then
echo "Usage: $0 directory word"
echo "Shows files which contains words"
exit 0
endif
set dir = $argv[1]
if (!
I create a bash script with using case syntax. My bash script option must be "./script user hello". Below is the content of the script.
Quote:
user=`echo "$1" | sed "s/$/@foo.com/"`
case $1 in
*)
echo "From: $user
TEST1" > /var/log/test1
Hi Guys,
I am relatively new to scripting at the moment and am struggling to get the following function to work. For some reason it does not recognise the arithmatic symbol when i select option1. Any help would be greatly appreciated.
Code:
menu ()
{
echo "=============="
echo "Calculator"
echo "=============="
echo "1. Divide"
echo "2.
Hi,
I have wordnet for english, but now I need german too
WOuld you have a program for that?
I have for wordnet this one.
Hi guys...was trying to use while loop and a sentry to prompt user input again if an invalid option was entered...but somehow I got a "while" unmatched error...The code is as below:
Code:
#!/system/bin/sh
finsh=0
while [ $finish -ne 0 ]
do
echo "Please select an option: "
echo "1. One" echo "2. Two"
echo "3. Three"
echo "4.