Shell if statement in Solaris

Source: Internet
Author: User
The if Statement of shell under Solaris-general Linux technology-Linux technology and application information. For details, refer to the following section. Create a shell script in the Solaris directory:
#! /Bin/sh
# Ifmkdir
# Parameter is passed as $1 but reassigned to DIRECTORY
DIRECTORY = $1
# Is the string empty ??
If ["$ DIRECTORY" = ""]
Then
Echo "Usage: 'basename $ 0' directory to create"> & 2
Exit 1
Fi

If [! -D $ DIRECTORY]
Then
Echo "The directory does't exist" #14 rows
Echo-n "Create it now? [Y. n]:"
Read ANS
If ["$ ANS" = "y" | "$ ANS" = "Y"]
Then
Echo "creating now"
# Create directory and send all output to/dev/null
Mkdir $ DIRECTORY>/dev/null 2> & 1
If [$? ! = 0]
Then
Echo "Errors creating the directory $ DIRECTORY"> & 2
Exit 1
Fi
Fi
Fi

Run the Script:./ifmkdir. sh kkk
The following error is reported:
./Ifmkdir. sh: if [: not found
./Ifmkdir. sh: syntax error in 14 rows: 'then' unexpected

Thank you !!!
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.