shellscript

サンプルコード:
#!/bin/bash

echo “PID of this script: $$”
echo “PPID of this script: $PPID&# ...

Linux

サンプル
#!/bin/bash
#file_desc

exec 3<&0 0<name.txt
read line1
read line2
exec 0< ...