This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ninja -t targets all | grep "^tst_" | cut -d ':' -f1 | xargs ninja |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| MOUNTDIR=$(mktemp -d) | |
| WORKDIR=$(mktemp -d) | |
| mkdir -p $MOUNTDIR | |
| # Mount the folder that contains your jpegs. Example: server-name/mount-name/some/folder/inside | |
| mount_smbfs //Guest:@$1 $MOUNTDIR |