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