-
Notifications
You must be signed in to change notification settings - Fork 19
HannahN #14
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
base: main
Are you sure you want to change the base?
HannahN #14
Changes from 1 commit
2a4fbd7
538e8a7
9690a06
d8fc3e7
d50eea6
6eca585
0a66dfe
bb7f9e0
a1f5438
c97561f
00a1b19
32d7cf1
6f3685e
701ef14
0b293d4
47653ac
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,43 @@ | ||
| # Write your code here | ||
| #!/bin/bash | ||
| echo "Hello, world!" | ||
| mkdir project | ||
| cd project | ||
| git init | ||
| mkdir README.md resources settings.conf src | ||
mo92othman marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| cd resources | ||
| touch family picture.jpg icon.png logo.png | ||
mo92othman marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| cd .. | ||
| cd src | ||
| touch database profile program.java | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Could you modify it ,please? |
||
| cd .. | ||
| git add . | ||
| git commit -m "initial commit" | ||
| echo "Setup project..." | ||
| cd README.md | ||
mo92othman marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| echo "Welcome to my project" >> README.md | ||
| cd .. | ||
| cd src | ||
| rm profile | ||
mo92othman marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| cd .. | ||
| cd resources | ||
| rm family picture.jpg | ||
| cd .. | ||
| git add . | ||
| git commit -m "delete files" | ||
|
||
| pwd | ||
| cd resources | ||
| pwd | ||
| ls -a | ||
|
||
| echo "Setup javascript..." | ||
| cd .. | ||
| cd src | ||
| pwd | ||
| mv program.java program.js | ||
| echo "console.log('Javascript works!');" >> program.js | ||
| node program.js | ||
| cd .. | ||
| pwd | ||
| git add . | ||
| git commit -m "model runs" | ||
|
||
| ls -a | ||
| echo "All done!" | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| <paste here your github username> | ||
| <paste here your github username>hannahwn | ||
|
||
Uh oh!
There was an error while loading. Please reload this page.