Standardized script syntax

This commit is contained in:
Sun Knudsen 2021-03-16 14:23:21 -04:00
parent 8b4def74ec
commit 78ee1e0e3b
No known key found for this signature in database
GPG key ID: 1FA767862BBD1305
7 changed files with 34 additions and 34 deletions

View file

@ -246,7 +246,7 @@ Insert micro SD card into macOS computer, run following and eject card.
```shell
volume_path="/Volumes/boot"
volume_uuid=`diskutil info "$volume_path" | awk '/Volume UUID:/ { print $3 }'`
volume_uuid=$(diskutil info "$volume_path" | awk '/Volume UUID:/ { print $3 }')
echo "UUID=$volume_uuid none msdos rw,noauto" | sudo tee -a /etc/fstab
```