diff --git a/AUTHORS b/AUTHORS index 6c86311c..0e0d25c5 100644 --- a/AUTHORS +++ b/AUTHORS @@ -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). diff --git a/CITATION b/CITATION index 0aad2da9..8a8c1bf8 100644 --- a/CITATION +++ b/CITATION @@ -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/. diff --git a/README.md b/README.md index dda3be7e..e42d5b25 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ # 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 @@ -14,7 +14,7 @@ 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 @@ -22,10 +22,10 @@ All participants should agree to abide by the [Software Carpentry Code of Conduc ## 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/. diff --git a/_extras/discuss.md b/_extras/discuss.md index 06862dfe..d81ee350 100644 --- a/_extras/discuss.md +++ b/_extras/discuss.md @@ -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). diff --git a/_extras/guide.md b/_extras/guide.md index 59975164..b7e89a5c 100644 --- a/_extras/guide.md +++ b/_extras/guide.md @@ -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 diff --git a/contribute.md b/contribute.md index 629bfe72..814d526e 100644 --- a/contribute.md +++ b/contribute.md @@ -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. diff --git a/episodes/06-free-text.md b/episodes/06-free-text.md index 2c9e3037..4096bc1e 100644 --- a/episodes/06-free-text.md +++ b/episodes/06-free-text.md @@ -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. @@ -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. @@ -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: @@ -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. diff --git a/fig/redirects-and-pipes.svg b/fig/redirects-and-pipes.svg index 20e80810..f1ede551 100644 --- a/fig/redirects-and-pipes.svg +++ b/fig/redirects-and-pipes.svg @@ -13,7 +13,7 @@ version="1.1" inkscape:version="0.91 r13725" sodipodi:docname="redirects-and-pipes.svg" - inkscape:export-filename="/Users/danmichael/source/library-shell/fig/redirects-and-pipes.png" + inkscape:export-filename="/Users/danmichael/source/lc-shell/fig/redirects-and-pipes.png" inkscape:export-xdpi="149.94643" inkscape:export-ydpi="149.94643">