Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gmsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Larry Price
gmsh
Commits
628d0f00
Commit
628d0f00
authored
18 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
cleanup
parent
dcab669f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
utils/solvers/c++/interactive.cpp
+7
-7
7 additions, 7 deletions
utils/solvers/c++/interactive.cpp
with
7 additions
and
7 deletions
utils/solvers/c++/interactive.cpp
+
7
−
7
View file @
628d0f00
...
...
@@ -24,7 +24,7 @@ class GmshInteractiveClient{
}
void
read
(
char
*
prompt
)
{
// preload a few commands in the history:
// pre
-
load a few commands in the history:
add_history
(
"lc = 1.;"
);
add_history
(
"Point(1) = {0,0,0,lc};"
);
add_history
(
"Point(2) = {5,0,0,lc};"
);
...
...
@@ -32,22 +32,22 @@ class GmshInteractiveClient{
add_history
(
"argh"
);
while
(
1
)
{
// read input char until CR, LF, EOF
,
^D
// read input char until CR, LF, EOF
or
^D
char
*
ptr
=
readline
(
prompt
);
// exit interactive if EOF or ^D
if
(
!
ptr
)
break
;
// if the
re is something in the line
// if the
command line is not empty
if
(
strlen
(
ptr
)){
// add the command in the stack
add_history
(
ptr
);
if
(
!
strcmp
(
ptr
,
"q"
)
||
!
strcmp
(
ptr
,
"quit"
)){
// exit interactive if q
,
quit
, exit
if
(
!
strcmp
(
ptr
,
"q"
)
||
!
strcmp
(
ptr
,
"quit"
)){
// exit interactive if q
or
quit
free
(
ptr
);
break
;
}
else
if
(
!
strcmp
(
ptr
,
"dir"
)
||
!
strcmp
(
ptr
,
"ls"
)
){
else
if
(
ptr
[
0
]
==
'!'
){
// direct system calls
system
(
"ls -al"
);
system
(
&
ptr
[
1
]
);
}
else
if
(
!
strcmp
(
ptr
,
"argh"
)){
// test speed of string sending with a 1Mb view
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment