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

Claj debug #1

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
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
11 changes: 9 additions & 2 deletions notebooks/01_Start_at_the_command_line.ipynb
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

{
"cells": [
{
Expand All @@ -15,6 +16,7 @@
"> This chapter is also covered in the [Your new friend: Command Line](https://www.youtube.com/watch?v=jvZLWhkzX-8) video."
]
},

{
"cell_type": "markdown",
"metadata": {},
Expand Down Expand Up @@ -535,12 +537,17 @@
"Now time to delete the `practice` directory:\n",
"\n",
"> __Attention__: Deleting files using `del`, `rmdir` or `rm` is irrecoverable, meaning _the deleted files will be gone forever_! So be very careful with this command.\n",
"Pro tip: You can use an alias for the `rm` command or additional parameters to prevent that important files will be deleted by accident.",
"\n",
"### OS X and LINUX\n",
"<!--sec data-title=\"OS X and Linux\" data-id=\"OSX_Linux_rm\" data-collapse=true ces-->\n",
"\n",

"**command-line**\n",
"```\n",
"$ # Add alias for rm\n",
"$ alias rm='rm -i'\n",
"$ # Delete subfolder practice",
"$ rm -r practice\n",
"```\n",
"<!--endsec-->\n",
Expand All @@ -550,7 +557,7 @@
"\n",
"**command-line**\n",
"```\n",
"> rmdir /S practice\n",
"> rmdir /S /P practice\n",
"practice, Are you sure <Y/N>? Y\n",
"```\n",
"<!--endsec-->\n",
Expand Down Expand Up @@ -669,7 +676,7 @@
"> **Data Science at the Command Line** http://datascienceatthecommandline.com/"
]
}
],
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
Expand Down