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
- jupyter
- LaTeX
- SSH
- intel compiler
- Anaconda
- datascience
- HDF5
- portforwarding
- openmp
- polyglot
- HFS+
- MAC
- Windows
- c++
- vim
- cygwin
- cython
- gfortran
- vi
- h5py
- mpi4py
- tab space
- arXiver
- conda
- Matplotlib
- Visual Studio
- hyperref
- python
- virtual
- GSL
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