Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sf100 slides #22

Merged
merged 45 commits into from
May 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
f92a675
Add X-CITE logo to the slide
sajith May 15, 2024
44e908d
Add subtitle
sajith May 15, 2024
364bb1d
Add a footer
sajith May 15, 2024
56a29ed
Add some notes about getting in, linux, cmdline
sajith May 15, 2024
ed508e7
Add some notes about helpful tools
sajith May 15, 2024
bb6a827
It is command-line, not commandline, per Wikipedia
sajith May 16, 2024
78ba446
Update footer in revealjs slides
sajith May 16, 2024
62e1b15
Expand preliminaries
sajith May 16, 2024
b387b18
Expand shell
sajith May 16, 2024
d843775
Add some notes about files and directories
sajith May 16, 2024
d6c2ad9
Add some notes about shell scripting
sajith May 16, 2024
eea122e
Use slide-level 2 for beamer slides
sajith May 20, 2024
9f1584c
Avoid logo from beamer version
sajith May 20, 2024
9ecde02
Add pptx format
sajith May 20, 2024
b2675e5
Use reference pptx
sajith May 20, 2024
b096ac1
Rename slides
sajith May 20, 2024
228a889
Add yaml front matter in main document
sajith May 20, 2024
13f73ae
Make X-CITE logo transparent
sajith May 20, 2024
cd6adaa
List resources in the end
sajith May 20, 2024
50aee11
Add an alias to the current page
sajith May 20, 2024
6eeeb3f
Update dates
sajith May 20, 2024
ab34210
Quote dates
sajith May 20, 2024
e73b160
Remove whitespace
sajith May 20, 2024
6b9f699
Add org logos
sajith May 20, 2024
63a28aa
Add a custom title slide with org logos
sajith May 20, 2024
4d7ea73
Rename slide file, again
sajith May 20, 2024
9446781
Drop adjective
sajith May 21, 2024
d96efcd
Update shell notes
sajith May 21, 2024
9029942
Add Unix slogan
sajith May 21, 2024
d287d59
Do not expand on home directory size
sajith May 21, 2024
e6c9bc8
Notes on pwd/cwd, file names
sajith May 21, 2024
96c57db
Add wildcards
sajith May 21, 2024
cb7a14e
Fix a mistake in main notes
sajith May 21, 2024
9a0441d
Add stdin/out/err, I/O redirection
sajith May 21, 2024
f89ed33
Add pipes
sajith May 21, 2024
2de2c93
Mention symbolic links
sajith May 21, 2024
77286e9
Maybe skip symbolic links
sajith May 21, 2024
2d274de
Add groups and permissions
sajith May 21, 2024
4cbfb1c
Expand permissions, processes
sajith May 21, 2024
8799950
Omit signals for now
sajith May 21, 2024
bd81cc3
List resources
sajith May 21, 2024
4ec1f29
Add absolute/relative paths
sajith May 21, 2024
8e6c8a3
Include the cheat sheet
sajith May 21, 2024
d9a2720
Mention . and ..
sajith May 21, 2024
e428cde
Omit environment variables
sajith May 21, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added assets/reference.pptx
Binary file not shown.
Binary file added images/chess-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions images/chess-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/isi-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/renci-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/x-cite-logo-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added theme2/SF100/cheat-sheet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
62 changes: 0 additions & 62 deletions theme2/SF100/commandline-slides.md

This file was deleted.

14 changes: 10 additions & 4 deletions theme2/SF100/linux-commandline-scripting.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# Linux, Command Line, and Scripting
---
title: "Linux, Command Line, and Scripting"
date: "2024-05-08"
date-modified: last-modified
aliases:
- "/theme2/SF100/"
---

The following notes assume that you are all set up to use your
accounts on the CLASSE Linux systems.
Expand All @@ -21,8 +27,8 @@ systems.
Slides accompanying these notes are available in [HTML][html-slides]
and [PDF][pdf-slides] formats.

[html-slides]: commandline-slides-revealjs.html
[pdf-slides]: commandline-slides.pdf
[html-slides]: slides.html
[pdf-slides]: slides.pdf

:::

Expand Down Expand Up @@ -733,7 +739,7 @@ What if you want to discard `stdout` completely? You can redirect it
to the special file `/dev/null`:

```{.bash}
[ssasidharan@lnx201 ~]$ ls -l >> ls-output.txt
[ssasidharan@lnx201 ~]$ ls -l > /dev/null
```

If you want to append `stdout` to a file instead of overwriting it,
Expand Down
13 changes: 13 additions & 0 deletions theme2/SF100/slides.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#org-logos {
display: flex;
align-items: center;
justify-content: center;
}

#org-logos img {
float: left;
width: 200px;
object-fit: cover;
display: inline-block;
margin: 0 20px 0 0;
}
Loading