Acavus superbus
Acavus superbus is a species of air-breathing land snails, terrestrial pulmonate gastropod mollusks in the family Acavidae.
Acavus superbus | |
---|---|
![]() | |
Acavus superbus roseolabiatus | |
Scientific classification ![]() | |
Kingdom: | Animalia |
Phylum: | Mollusca |
Class: | Gastropoda |
Subclass: | Heterobranchia |
Superorder: | Eupulmonata |
Order: | Stylommatophora |
Informal group: | Sigmurethra |
Family: | Acavidae |
Genus: | Acavus |
Species: | A. superbus |
Binomial name | |
Acavus superbus Pfeiffer, 1854 | |
Three subspecies recognized.[1]
Description
Acavus superbus has green colored shell and rose brown body.[2]
Distribution
This species is endemic to Sri Lanka. It is confined to wet zone of the country.
Subspecies
- Acavus superbus grevillei
- Acavus superbus roseolabiatus
- Acavus superbus superbus
gollark: ```python#!/usr/bin/env python3import subprocess, os, os.path, sys, argparse, datetimetimestamp = datetime.datetime.now().strftime("%Y-%m-%d_%H-%M-%S")print(timestamp)parser = argparse.ArgumentParser(description="do backups, probably")parser.add_argument("--encrypt", "-E", help="store backup in encrypted folder (please make sure it's unlocked)", action="store_true")parser.add_argument("--no-incremental", "-n", help="don't do incremental backup", action="store_true")parser.add_argument("--save_as", "-a", help="back up under different name")parser.add_argument("dir", help="directory to backup")args = parser.parse_args()incremental = not args.no_incrementalprint(args)srcdir = os.path.abspath(args.dir)outdir = os.path.join(os.path.dirname(os.path.abspath(sys.argv[0])), "encrypted/backups" if args.encrypt else "backups")safepath = (args.save_as or srcdir).lstrip("/").replace("/", "-").replace("_", "-")outpath = os.path.join(outdir, f"{safepath}_{timestamp}{'_incr' if incremental else ''}.tar.zst")snapshot = os.path.join(outdir, f"{safepath}.snapshot")snapargs = ["-g", snapshot] if incremental else []print(srcdir, outdir, outpath)tarproc = subprocess.Popen(["tar", "-c", "-v", "-C", os.path.dirname(srcdir), os.path.basename(srcdir)] + snapargs, stdout=subprocess.PIPE)zstproc = subprocess.Popen(["zstd", "-10", "-T0", "-o", outpath], stdin=tarproc.stdout)def assert_proc(x): if x.wait() != 0: print(f"warning: {x.args} failed")assert_proc(tarproc)assert_proc(zstproc)```efficiency™
gollark: Wow, I really love having to use `grep` to find an option in `--help`!
gollark: Yes.
gollark: Anyway², I'll switch over my backup stuff and use the existing incremental tar thing for smallish compressible directories and rsync for large-scale apiary data.
gollark: Wow, my server just got an "out of disk space" warning for /tmp.
References
- Hausdorf, Bernhard; Perera, Kalika K. (2000). "REVISION OF THE GENUS ACAVUS FROM SRI LANKA (GASTROPODA: ACAVIDAE)". Journal of Molluscan Studies. Journal of Molluscan Studies. 66 (2): 217–231. doi:10.1093/mollus/66.2.217. Retrieved 18 October 2016.
- "Land Snails of Sri Lanka". Young Biologists' Association Sri Lanka. Retrieved 18 October 2016.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.