Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
fayyazhussain_devops
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Fayyaz Hussain
fayyazhussain_devops
Commits
9b309ccc
Commit
9b309ccc
authored
Aug 11, 2022
by
Fayyaz Hussain
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Upload New File
parent
b954f95c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
0 deletions
+34
-0
Q-3_Bash_Script.sh
Q-3_Bash_Script.sh
+34
-0
No files found.
Q-3_Bash_Script.sh
0 → 100644
View file @
9b309ccc
#!/bin/bash
arr
=(
90 23 73 11 5 31 129 678 7 5
)
j
=
0
temp
=
0
values
=
10
# Declaring function
max
()
{
j
=
$1
if
[
$j
-lt
$values
]
then
if
[
${
arr
[j]
}
-gt
$temp
]
then
# swap
temp
=
${
arr
[j]
}
((
j++
))
max
$j
else
((
j++
))
max
$j
fi
fi
}
echo
"Array in original order"
echo
${
arr
[*]
}
# calling function max
max 1
echo
"Maximum value is:"
echo
$temp
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment