or
or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up
Syntax | Example | Reference | |
---|---|---|---|
# Header | Header | 基本排版 | |
- Unordered List |
|
||
1. Ordered List |
|
||
- [ ] Todo List |
|
||
> Blockquote | Blockquote |
||
**Bold font** | Bold font | ||
*Italics font* | Italics font | ||
~~Strikethrough~~ | |||
19^th^ | 19th | ||
H~2~O | H2O | ||
++Inserted text++ | Inserted text | ||
==Marked text== | Marked text | ||
[link text](https:// "title") | Link | ||
 | Image | ||
`Code` | Code |
在筆記中貼入程式碼 | |
```javascript var i = 0; ``` |
|
||
:smile: | ![]() |
Emoji list | |
{%youtube youtube_id %} | Externals | ||
$L^aT_eX$ | LaTeX | ||
:::info This is a alert area. ::: |
This is a alert area. |
On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?
Please give us some advice and help us improve HackMD.
Syncing
xxxxxxxxxx
IND-UCSF Software Carpentry Notes
Helpful Links
Home Page
Amanda's github repository
Unix Lesson
Git Lesson
R Lesson
Data Carpentry Lesson page
Software Carpentry Lesson page
Section for your resume if you want it
Software Carpentry Course, UCSF
March 2019
Bash Notes
pwd - show what directory (folder) you are in
cd - navigate to directory
ls - list what is in your directory
mkdir - make new folder
write with nano - nano docname.txt
read your (whole) file in bash window - cat docname.txt
look at just the first n lines of your file in bash window - head -n docname.txt
moving files - mv docname.txt directorymovingto
moving all files with certain feature in name (ex: all txt files) (wildcards) - mv *.txt directorymovingto
copying a file - cp docname.txt docname2.txt
rename - mv docname.txt newdocname.txt
removing files (gets rid of permanently!) - rm docname.txt
count number of lines in your file - wc -l summary_table.csv
look at a particular line - grep "term" summary_table.csv
PIPES
| is the pipe symbol
Put it between commands to do more than one thing at a time
ex: grep "NonDynamic" summary_table.csv | wc -l
Write your grep to a new file - grep "term" summary_table.csv > newfile.csv
Append to already existing file - grep "term2" summary_table.csv >> newfile.csv
Looking at gene with largest increase in expression at any point
LOOPS
Listing all files of a particular type: wc -l *.txt
Now doing the same thing with a for loop…
for filename in 'ls data/'; do echo; $filename; done
Other commands
Finding stuff: if you know the file name: find . -name summary_table.csv