Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
CodiMD export script
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
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
stgroup
misc
CodiMD export script
Merge requests
!1
Hedgedoc import
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Hedgedoc import
hedgedoc-import
into
main
Overview
2
Commits
38
Pipelines
0
Changes
1
Merged
Hedgedoc import
Andreas Domanowski
requested to merge
hedgedoc-import
into
main
Mar 1, 2023
Overview
2
Commits
38
Pipelines
0
Changes
1
0
0
Merge request reports
Viewing commit
8b5d96a9
Prev
Next
Show latest version
1 file
+
10
−
8
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
8b5d96a9
Open URLs with default browser
· 8b5d96a9
Andreas Domanowski
authored
Mar 2, 2023
history_scripts/visit_migrated_documents.sh
0 → 100755
+
13
−
0
View file @ 9f8b5719
Edit in single-file editor
Open in Web IDE
#!/usr/bin/env bash
open_command
=
open
if
[[
$(
command
-v
xdg-open
)
]]
;
then
open_command
=
xdg-open
fi
script_directory
=
$(
cd
--
"
$(
dirname
--
"
${
BASH_SOURCE
[0]
}
"
)
"
&> /dev/null
&&
pwd
)
url_file
=
$script_directory
/hedgedoc_documents_to_visit.url
readarray
-t
url_array <
"
$url_file
"
for
i
in
"
${
url_array
[@]
}
"
do
eval
"
$open_command
$i
"
done
\ No newline at end of file
Loading