Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tutscripts
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
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
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Tutorierende
tutscripts
Commits
b0d0f11d
Verified
Commit
b0d0f11d
authored
1 year ago
by
jonahbeneb02
Browse files
Options
Downloads
Patches
Plain Diff
Fix help check
parent
e11080a8
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
fucopy.sh
+1
-1
1 addition, 1 deletion
fucopy.sh
fudist.sh
+1
-1
1 addition, 1 deletion
fudist.sh
fufixpdf.sh
+1
-1
1 addition, 1 deletion
fufixpdf.sh
fuxournalexport.sh
+1
-1
1 addition, 1 deletion
fuxournalexport.sh
fuzip.sh
+2
-2
2 additions, 2 deletions
fuzip.sh
with
6 additions
and
6 deletions
fucopy.sh
+
1
−
1
View file @
b0d0f11d
#! /bin/sh
#! /bin/sh
if
[
$#
-lt
1
]
||
[
!
-f
'grades.csv'
]
&&
[
!
-f
'grades.xls'
]
;
then
if
[
$#
-lt
1
]
||
(
[
!
-f
'grades.csv'
]
&&
[
!
-f
'grades.xls'
]
)
;
then
printf
"Usage: %s <pattern>
\n
"
$(
basename
$0
)
>
&2
printf
"Usage: %s <pattern>
\n
"
$(
basename
$0
)
>
&2
printf
"Supply a pattern matching files to be copied, e.g. '*.pdf'
\n
"
>
&2
printf
"Supply a pattern matching files to be copied, e.g. '*.pdf'
\n
"
>
&2
printf
"Execute within the directory containing 'grades.csv'
\n
"
>
&2
printf
"Execute within the directory containing 'grades.csv'
\n
"
>
&2
...
...
This diff is collapsed.
Click to expand it.
fudist.sh
+
1
−
1
View file @
b0d0f11d
#! /bin/sh
#! /bin/sh
if
[
$#
-lt
1
]
||
[
!
-f
'grades.csv'
]
&&
[
!
-f
'grades.xls'
]
;
then
if
[
$#
-lt
1
]
||
(
[
!
-f
'grades.csv'
]
&&
[
!
-f
'grades.xls'
]
)
;
then
printf
'Usage: %s [FILE]...\n'
"
$(
basename
$0
)
"
>
&2
printf
'Usage: %s [FILE]...\n'
"
$(
basename
$0
)
"
>
&2
printf
'Supply file(s) to be distributed into the respective Submission attachment(s)\n'
>
&2
printf
'Supply file(s) to be distributed into the respective Submission attachment(s)\n'
>
&2
printf
"Execute within the directory containing 'grades.csv'
\n
"
>
&2
printf
"Execute within the directory containing 'grades.csv'
\n
"
>
&2
...
...
This diff is collapsed.
Click to expand it.
fufixpdf.sh
+
1
−
1
View file @
b0d0f11d
#! /bin/sh
#! /bin/sh
if
[
$#
-ne
0
]
||
[
!
-f
'grades.csv'
]
&&
[
!
-f
'grades.xls'
]
;
then
if
[
$#
-ne
0
]
||
(
[
!
-f
'grades.csv'
]
&&
[
!
-f
'grades.xls'
]
)
;
then
printf
"Usage: %s
\n
"
$(
basename
$0
)
>
&2
printf
"Usage: %s
\n
"
$(
basename
$0
)
>
&2
printf
"Execute within the directory containing 'grades.csv'
\n
"
>
&2
printf
"Execute within the directory containing 'grades.csv'
\n
"
>
&2
exit
1
exit
1
...
...
This diff is collapsed.
Click to expand it.
fuxournalexport.sh
+
1
−
1
View file @
b0d0f11d
#! /bin/sh
#! /bin/sh
xournal
=
${
XOURNAL
:-
xournalpp
}
xournal
=
${
XOURNAL
:-
xournalpp
}
if
[
$#
-ne
1
]
||
[
!
-f
'grades.csv'
]
&&
[
!
-f
'grades.xls'
]
;
then
if
[
$#
-ne
1
]
||
(
[
!
-f
'grades.csv'
]
&&
[
!
-f
'grades.xls'
]
)
;
then
printf
"Usage: %s <list of suffix(es)>
\n
"
$(
basename
$0
)
>
&2
printf
"Usage: %s <list of suffix(es)>
\n
"
$(
basename
$0
)
>
&2
printf
"Supply a suffix to be appended to the name of the exported file
\n
"
>
&2
printf
"Supply a suffix to be appended to the name of the exported file
\n
"
>
&2
printf
"E.g., %s '_graded'
\n
"
$(
basename
$0
)
>
&2
printf
"E.g., %s '_graded'
\n
"
$(
basename
$0
)
>
&2
...
...
This diff is collapsed.
Click to expand it.
fuzip.sh
+
2
−
2
View file @
b0d0f11d
#! /bin/sh
#! /bin/sh
dir
=
$1
dir
=
$1
if
[
$#
-lt
2
]
||
[
!
-f
"
$dir
/grades.csv"
]
&&
[
!
-f
"
$dir
/grades.xls"
]
;
then
if
[
$#
-lt
2
]
||
(
[
!
-f
"
$dir
/grades.csv"
]
&&
[
!
-f
"
$dir
/grades.xls"
]
)
;
then
printf
"Usage: %s <directory> <pattern1> [pattern2] ...
\n
"
$(
basename
$0
)
>
&2
printf
"Usage: %s <directory> <pattern1> [pattern2] ...
\n
"
$(
basename
$0
)
>
&2
printf
"Supply a pattern matching files to be added to the zip, e.g. '*.pdf'
\n
"
>
&2
printf
"Supply a pattern matching files to be added to the zip, e.g. '*.pdf'
\n
"
>
&2
printf
"Execute
withi
n the directory containing 'grades.csv'
\n
"
>
&2
printf
"Execute
o
n the directory containing 'grades.csv'
\n
"
>
&2
exit
1
exit
1
fi
fi
...
...
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