Auto saved by Logseq

This commit is contained in:
2022-04-09 11:46:11 +02:00
parent 2abde4de62
commit e466a381ce
+6
View File
@@ -0,0 +1,6 @@
- To go from spaces to tabs in Python code:
- `for i in *py; do unexpand -t 4 $i | sponge $i; done`
- [[sponge]] is in [[moreutils]]
- To go from tabs to spaces in Python code:
- `for i in *py; do expand -t 4 $i | sponge $i; done`
-