Sponsored Content
Top Forums UNIX for Dummies Questions & Answers not script prompting but,............. Post 414 by Astudent on Saturday 2nd of December 2000 09:53:18 PM
Old 12-02-2000
Neo - I know that part - that's what I'm using for my other "if" statements.
I just don't know how to have it recognize if the file is in my dir.

Usually I prompt so when you echo the question you have
read $filename

if [ "$#" = "$filename" ]
,....

But thanks anyways,
But I am not allowed to prompt the user,
Here is how it should look

file look
- that file isn't in your directory

file mynewfile
-output is then revealed -

I hope this helps!

theA

 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

sftp prompting for password

I have the problem with SFTP; BELOW IS the entry from my ssh_config file It's prompting me for password all the time when using SFTP. pLEASE help. (1 Reply)
Discussion started by: dsravan
1 Replies

2. Shell Programming and Scripting

Grep Script Prompting question

I saw this wonderful script in a previous post and modified it to work, my question is is there a way to enable a prompt at the GREP portion to allow me to enter what I wish to grep before hand? #!/bin/sh DATE=`date +%Y%m%d%H%M%S` HOME=/u/home/xxx/report LOG_DIR=/var/log/... (1 Reply)
Discussion started by: NelsonC
1 Replies

3. Shell Programming and Scripting

running a script using su - without prompting password

hi guys, is there any way to run a script using su - without prompting a password? ex: su - $APPSUSERNAME/$APPSUSERPASSWORD stop_apps.sh my purpose here is to run a script with current dbuser. thanks in advance. (3 Replies)
Discussion started by: d3xt3r
3 Replies

4. Shell Programming and Scripting

Prompting for password

Hi, I have SVN installed in my UNIX solaris server. I actually automated the process that downloads code from SVN server to UNIX solaris server in script. When i run the script, its asking for password to download every element. Its really difficult to type password for every element when... (3 Replies)
Discussion started by: gthangav
3 Replies

5. Shell Programming and Scripting

SFTP prompting for password even though password is in script

Hi All, I am trying to transfer a file from one server to a remote server using SFTP. Client is not ready for key setup. I am working on Solaris 10. Here is the code. #!/bin/ksh # sample automatic Sftp script to dump a file USER="user1" PASSWORD="pass1" HOST="host1" sftp $USER@$HOST... (6 Replies)
Discussion started by: megha2525
6 Replies

6. Solaris

Script to get files from remote server to local server through sftp without prompting for password

Hi, I am trying to automate the process of fetching files from remote server to local server through sftp. I have the username and password for the remote solaris server. But I need to give password manually everytime i run the script. Can anyone help me in automating the script such that it... (3 Replies)
Discussion started by: ssk250
3 Replies

7. UNIX for Dummies Questions & Answers

SFTP without prompting password

Dear unix experts, i have a requirement as below. i need to use SFTP as FTP. ftp -n -v << ENDFTP open test_ftp.server user ftp_user_name ftp_password quit ENDFTP if i use this in a shell script, it's not asking for password. But i want the similar thing achived using... (5 Replies)
Discussion started by: AraR87
5 Replies

8. Shell Programming and Scripting

Prompting user twice on the same line

Hi, I'm trying to prompt twice on the same line but can't make it so far. I can prompt only once per line. i.e. read -p "Enter the two digits of your sum: " NUM1; read -p "+" NUM2 the result of above is:Enter the two digits of your sum: 5 + 7 But I would like it to look something... (8 Replies)
Discussion started by: violeta.barajas
8 Replies

9. Shell Programming and Scripting

How to run sftp in shell script without prompting for password?

Hi, Can anyone tell me how to pass password in a shell script for sftp so that i can run it in background without user entering the password? I used a expect script but it timesout after some time and the process remains incomplete at the end. Can anyone suggest any other idea? Will the... (3 Replies)
Discussion started by: Little
3 Replies

10. Shell Programming and Scripting

Crontab - password prompting

// Red Hat Enterprise Linux Server release 6.7 I wanted to pass the password, but when I execute this cron, it stops at Password: prompt. Please advise on how to fix the error. Thank you for tour help in advance. #!/usr/bin/ksh su - pmserver echo "su - pmserver" cd... (2 Replies)
Discussion started by: Daniel Gate
2 Replies
CRL(1)								      OpenSSL								    CRL(1)

NAME
crl - CRL utility SYNOPSIS
openssl crl [-inform PEM|DER] [-outform PEM|DER] [-text] [-in filename] [-out filename] [-noout] [-hash] [-issuer] [-lastupdate] [-nextup- date] [-CAfile file] [-CApath dir] DESCRIPTION
The crl command processes CRL files in DER or PEM format. COMMAND OPTIONS
-inform DER|PEM This specifies the input format. DER format is DER encoded CRL structure. PEM (the default) is a base64 encoded version of the DER form with header and footer lines. -outform DER|PEM This specifies the output format, the options have the same meaning as the -inform option. -in filename This specifies the input filename to read from or standard input if this option is not specified. -out filename specifies the output filename to write to or standard output by default. -text print out the CRL in text form. -noout don't output the encoded version of the CRL. -hash output a hash of the issuer name. This can be use to lookup CRLs in a directory by issuer name. -issuer output the issuer name. -lastupdate output the lastUpdate field. -nextupdate output the nextUpdate field. -CAfile file verify the signature on a CRL by looking up the issuing certificate in file -CApath dir verify the signature on a CRL by looking up the issuing certificate in dir. This directory must be a standard certificate directory: that is a hash of each subject name (using x509 -hash) should be linked to each certificate. NOTES
The PEM CRL format uses the header and footer lines: -----BEGIN X509 CRL----- -----END X509 CRL----- EXAMPLES
Convert a CRL file from PEM to DER: openssl crl -in crl.pem -outform DER -out crl.der Output the text form of a DER encoded certificate: openssl crl -in crl.der -text -noout BUGS
Ideally it should be possible to create a CRL using appropriate options and files too. SEE ALSO
crl2pkcs7(1), ca(1), x509(1) 0.9.7a 2000-02-08 CRL(1)
All times are GMT -4. The time now is 12:47 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy