Skip to content

Commit

Permalink
Update LC lesson links
Browse files Browse the repository at this point in the history
  • Loading branch information
katrinleinweber committed Nov 5, 2018
1 parent 58a4f87 commit b1fc584
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion AUTHORS
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Library Carpentry is authored and maintained by the [community](https://github.com/data-lessons/library-shell/network/members).
Library Carpentry is authored and maintained by the [community](https://github.com/librarycarpentry/lc-shell/network/members).

Credit for the Library Carpentry logos goes to [Tammy Nguyen](https://twitter.com/tammysongnguyen).
2 changes: 1 addition & 1 deletion CITATION
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ Please cite as:

Library Carpentry:
"Shell Lessons for Libraries."
June 2016, http://data-lessons.github.io/library-shell/.
June 2016, https://librarycarpentry.github.io/lc-shell/.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
# Library Carpentry

The Library Carpentry module '[Shell Lessons for Librarians](http://data-lessons.github.io/library-shell/)' is maintained by [Belinda Weaver](https://github.com/weaverbel) and [Tim Dennis](https://github.com/jt14den).
The Library Carpentry module '[Shell Lessons for Librarians](https://librarycarpentry.github.io/lc-shell/)' is maintained by [Belinda Weaver](https://github.com/weaverbel) and [Tim Dennis](https://github.com/jt14den).

## Background

Library Carpentry is a software skills training programme aimed at library and information professions. It builds on the work of [Software Carpentry](http://software-carpentry.org/) and [Data Carpentry](http://www.datacarpentry.org/).

Library Carpentry is in the commons and for the commons. It is not tied to any institution of person. For more information on Library Carpentry, see our website [librarycarpentry.github.io](http://librarycarpentry.github.io/).
Library Carpentry is in the commons and for the commons. It is not tied to any institution of person. For more information on Library Carpentry, see our website [librarycarpentry.github.io](https://librarycarpentry.github.io/).

## Contribution

There are many ways of contributing to Library Carpentry:

- Join our [Gitter discussion forum](https://gitter.im/LibraryCarpentry/).
- Follow updates on [Twitter](https://twitter.com/LibCarpentry).
- Make a suggestion or correct an error by [raising an Issue](https://github.com/data-lessons/library-shell/issues).
- Make a suggestion or correct an error by [raising an Issue](https://github.com/librarycarpentry/lc-shell/issues).

## Code of Conduct

All participants should agree to abide by the [Software Carpentry Code of Conduct](http://software-carpentry.org/conduct/).

## Authors

Library Carpentry is authored and maintained by the [community](https://github.com/data-lessons/library-shell/network/members).
Library Carpentry is authored and maintained by the [community](https://github.com/librarycarpentry/lc-shell/network/members).

## Citation

Please cite as:

Library Carpentry. Shell Intro for Librarians. June 2016. http://data-lessons.github.io/library-shell/.
Library Carpentry. Shell Intro for Librarians. June 2016. https://librarycarpentry.github.io/lc-shell/.
2 changes: 1 addition & 1 deletion _extras/discuss.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ There are many ways to discuss Library Carpentry lessons:

- Join our [Gitter discussion forum]({{ site.contact }}).
- Follow updates on [Twitter](https://twitter.com/LibCarpentry).
- Make a suggestion or correct an error by [raising an Issue](https://github.com/data-lessons/library-shell/issues).
- Make a suggestion or correct an error by [raising an Issue](https://github.com/librarycarpentry/lc-shell/issues).
2 changes: 1 addition & 1 deletion _extras/guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ____
____
## Making a handout

Librarians like handouts. To make a handout for this lesson, adapt/print from [http://data-lessons.github.io/library-shell/reference/](http://data-lessons.github.io/library-shell/reference/).
Librarians like handouts. To make a handout for this lesson, adapt/print from [https://librarycarpentry.github.io/lc-shell/reference/](https://librarycarpentry.github.io/lc-shell/reference/).

______
## 02-counting-mining.md
Expand Down
2 changes: 1 addition & 1 deletion contribute.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ permalink: /contribute/
There are three main ways to contribute to Library Carpentry:

- Join our [Gitter discussion forum](https://gitter.im/weaverbel/LibraryCarpentry). Here you can suggest new content, volunteer to become a lesson maintainer, or help shape future developments.
- Suggest an improvement or correct an error by [raising an Issue](https://github.com/data-lessons/library-data-intro/issues).
- Suggest an improvement or correct an error by [raising an Issue](https://github.com/librarycarpentry/lc-data-intro/issues).
- Run a workshop at your own institution! If you do, alert us on [Gitter](https://gitter.im/weaverbel/LibraryCarpentry): we're happy to help promote the workshop and offer guidance on running it. Remember, there is no better way to deepen your own knowledge of software skills than to teach others.
8 changes: 4 additions & 4 deletions episodes/06-free-text.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ $ tr ' ' '\n' < gulliver-clean.txt | sort | uniq -c | sort -r > gulliver-final.t
~~~
{: .bash}

Here we've made extended use of the pipes we saw in [Counting and mining with the shell](http://data-lessons.github.io/library-shell/02-counting-mining/). The first part of this script uses the translate command again, this time to translate every blank space into `\n` which renders as a new line. Every word in the file will at this stage have its own line.
Here we've made extended use of the pipes we saw in [Counting and mining with the shell](https://librarycarpentry.github.io/lc-shell/02-counting-mining/). The first part of this script uses the translate command again, this time to translate every blank space into `\n` which renders as a new line. Every word in the file will at this stage have its own line.

The second part uses the `sort` command to rearrange the text from its original order into an alphabetical configuration.

Expand Down Expand Up @@ -226,7 +226,7 @@ $ tr ' ' '\n' < 000003160_01_text-clean.txt | sort | uniq -c | sort -nr > 000003
~~~
{: .bash}

Here we've made extended use of the pipes we saw in [Counting and mining with the shell](http://data-lessons.github.io/library-shell/02-counting-mining/). The first part of this script uses the translate command again, this time to translate every blank space into `\n` which renders as a new line. Every word in the file will at this stage have its own line.
Here we've made extended use of the pipes we saw in [Counting and mining with the shell](https://librarycarpentry.github.io/lc-shell/02-counting-mining/). The first part of this script uses the translate command again, this time to translate every blank space into `\n` which renders as a new line. Every word in the file will at this stage have its own line.

The second part uses the `sort` command to rearrange the text from its original order into an alphabetical configuration.

Expand Down Expand Up @@ -314,7 +314,7 @@ $ sed -e 's/<[^>]*>//g' diary-noheadfoot.txt > diary-notags.txt
~~~
{: .bash}

Here we are using a regular expression (see the [Library Carpentry regular expression lesson](http://data-lessons.github.io/library-data-intro/04-regular-expressions/) to find all valid html tags (anything within angle brackets) and delete them. This is a complex regular expression, do don't worry too much about how it works! The script also requires the use of both the output redirect `>` we have seen and the input redirect `<` we haven't seen.
Here we are using a regular expression (see the [Library Carpentry regular expression lesson](https://librarycarpentry.github.io/lc-data-intro/04-regular-expressions/) to find all valid html tags (anything within angle brackets) and delete them. This is a complex regular expression, do don't worry too much about how it works! The script also requires the use of both the output redirect `>` we have seen and the input redirect `<` we haven't seen.

We're going to start by using the `tr` command, used for translating or
deleting characters. Type and run:
Expand Down Expand Up @@ -344,7 +344,7 @@ $ tr ' ' '\n' < diary-clean.txt | sort | uniq -c | sort -r > diary-final.txt
~~~
{: .bash}

Here we've made extended use of the pipes we saw in [Counting and mining with the shell](http://data-lessons.github.io/library-shell/02-counting-mining/). The first part of this script uses the translate command again, this time to translate every blank space into `\n` which renders as a new line. Every word in the file will at this stage have its own line.
Here we've made extended use of the pipes we saw in [Counting and mining with the shell](https://librarycarpentry.github.io/lc-shell/02-counting-mining/). The first part of this script uses the translate command again, this time to translate every blank space into `\n` which renders as a new line. Every word in the file will at this stage have its own line.

The second part uses the `sort` command to rearrange the text from its original order into an alphabetical configuration.

Expand Down
2 changes: 1 addition & 1 deletion fig/redirects-and-pipes.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit b1fc584

Please sign in to comment.