tips&polyius
This commit is contained in:
parent
21ece1b58d
commit
899e5a6c75
2 changed files with 22 additions and 0 deletions
7
polybius.md
Normal file
7
polybius.md
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
# Appunti akkazzo sul progetti Polybius #
|
||||||
|
|
||||||
|
- Sistemare proiettore muletto
|
||||||
|
- Radio AM
|
||||||
|
- Telefono Giango?
|
||||||
|
- Gancio
|
||||||
|
- maglietta deviazione dalla norma
|
|
@ -7,3 +7,18 @@ for i in **/*.mp3;do ffmpeg -i $i /tmp/wav/$i:t.wav; done
|
||||||
se $i è il fullpath relativo "catturato dal "for" $i:t ne è il il *solo* some file
|
se $i è il fullpath relativo "catturato dal "for" $i:t ne è il il *solo* some file
|
||||||
*con* estensione
|
*con* estensione
|
||||||
|
|
||||||
|
|
||||||
|
##Numero di File Descriptor associati a un pid
|
||||||
|
Tipicamente parliamo di socket. Dato il pid 32469
|
||||||
|
```
|
||||||
|
ls -l fd/ | grep socket | wc
|
||||||
|
```
|
||||||
|
oppure, esattamente l'equivalente:
|
||||||
|
```
|
||||||
|
sof -p 32469 | grep TCP | wc
|
||||||
|
```
|
||||||
|
Per confrontarli:
|
||||||
|
```
|
||||||
|
lsof -p 32469 | grep TCP | wc && ls -l fd/ | grep socket | wc
|
||||||
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue