Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- openmp
- HDF5
- virtual
- vim
- cython
- Windows
- SSH
- MAC
- arXiver
- tab space
- datascience
- c++
- mpi4py
- GSL
- Visual Studio
- portforwarding
- polyglot
- LaTeX
- hyperref
- Anaconda
- HFS+
- python
- h5py
- jupyter
- intel compiler
- vi
- conda
- cygwin
- Matplotlib
- gfortran
Archives
- Today
- Total
목록bash (1)
Astro Coke
[Bash] Bash scripting cheatsheet
source: https://devhints.io/bash Example #!/usr/bin/env bash NAME="John" echo "Hello $NAME!" Variables NAME="John" echo $NAME echo "$NAME" echo "${NAME}!" String quotes NAME="John" echo "Hi $NAME" #=> Hi John echo 'Hi $NAME' #=> Hi $NAME Shell execution echo "I'm in $(pwd)" echo "I'm in `pwd`" # Same See Command substitution Conditional execution git commit && git push git commit || echo "Commit..
Computer Setup
2019. 11. 3. 04:29