Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
script_factory
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Fabien Rozar
script_factory
Commits
5454f6a2
Commit
5454f6a2
authored
Feb 18, 2016
by
frozar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[DEV] Add the delete_subroutine script
parent
f041a36e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
0 deletions
+40
-0
delete_subroutine.sh
delete_subroutine.sh
+40
-0
No files found.
delete_subroutine.sh
0 → 100755
View file @
5454f6a2
#!/bin/bash
usage
(){
# display the number of argument given
# echo $#
echo
" Usage:"
$0
"<file_name> <subroutine_name>"
}
if
[
$#
-ne
2
]
then
usage
exit
-1
fi
f
=
$1
sub
=
$2
f_tmp
=
/tmp/
${
f
}
_tmp
beg
=
`
grep
-ni
-e
"subroutine *
${
sub
}
_"
-e
"end *subroutine"
$f
|
grep
-i
-e
"^[0-9]*: *!
\?
*subroutine *
$sub
"
-A1
|
head
-n1
|
cut
-d
":"
-f1
`
end
=
`
grep
-ni
-e
"subroutine *
${
sub
}
_"
-e
"end *subroutine"
$f
|
grep
-i
-e
"^[0-9]*: *!
\?
*subroutine *
$sub
"
-A1
|
tail
-n1
|
cut
-d
":"
-f1
`
if
[
"
${
beg
}
"
==
""
]
then
exit
fi
if
[
"
${
end
}
"
==
""
]
then
exit
fi
head
-n
$((
${
beg
}
-
1
))
$f
>
$f_tmp
nb_line
=
$(
wc
-l
$f
|
cut
-d
" "
-f1
)
tail
-n
$((
${
nb_line
}
-
${
end
}
))
$f
>>
$f_tmp
mv
$f_tmp
$f
echo
"INFO: delete subroutine '
${
sub
}
()' in
$f
"
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