cd /usr/local/lib/compat/pkgfind . -type l -exec test ! -e {} \; -print| a:link, a:visited, a.active { | |
| color: navy !important; | |
| } | |
| a:hover { | |
| border-bottom: 1px solid; | |
| } | |
| div.main-navigation-wrap a:link, | |
| div.main-navigation-wrap a:visited, |
| /* IBM Plex Mono */ | |
| @font-face { | |
| font-family: mastodon-font-monospace; | |
| src: local("IBM Plex Mono Italic"), url(/packs/media/fonts/ibm-plex/IBMPlexMono-Italic.woff2) format("woff2"), url(/packs/media/fonts/ibm-plex/IBMPlexMono-Italic.woff) format("woff"), url(/packs/media/fonts/ibm-plex/IBMPlexMono-Italic.ttf) format("truetype"); | |
| font-weight: 400; | |
| font-display: swap; | |
| font-style: italic | |
| } | |
| @font-face { |
| #! /bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: jupyterhub | |
| # Required-Start: $remote_fs $syslog | |
| # Required-Stop: $remote_fs $syslog | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: Start jupyterhub | |
| # Description: This file should be used to construct scripts to be | |
| # placed in /etc/init.d. |
| #!/bin/sh | |
| defaults write com.apple.dock autohide-delay -float 0.5 | |
| defaults write com.apple.dock autohide-time-modifier -float 0.5 | |
| killall Dock |
| #!/bin/sh | |
| defaults write com.apple.dock autohide-delay -float 0 | |
| defaults write com.apple.dock autohide-time-modifier -int 0 | |
| killall Dock |
| #!/bin/sh | |
| echo "$(printf "%012X" $(( 0x$(hexdump -n6 -e '/1 "%02X"' /dev/random) & 0xFEFFFFFFFFFF | 0x020000000000 )) | sed 's/.\{2\}/&:/g' | sed s/:$//g)" |
The following commands will connect FLAC files that contain the phrase "Singing" and "sing-songy" in the file name and copy them into the current directory.
find ~/Dropbox/TBTL -type f -name '*Singing *.flac' -exec cp "{}" . \;
find ~/Dropbox/TBTL -type f -name '*sing-songy*.flac' -exec cp "{}" . \;To generate a text file containing a list of collected files, run: