This file contains 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
;;; GNU Guix --- Functional package management for GNU | |
;;; Copyright © 2022 B. Wilson <[email protected]> | |
;;; | |
;;; This file is part of GNU Guix. | |
;;; | |
;;; GNU Guix is free software; you can redistribute it and/or modify it | |
;;; under the terms of the GNU General Public License as published by | |
;;; the Free Software Foundation; either version 3 of the License, or (at | |
;;; your option) any later version. | |
;;; |
This file contains 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
#! /usr/bin/env sh | |
# vim: filetype=sh : | |
function __init__ () { | |
#--- Module Start ---# | |
### Global Variables ### | |
typeset -A ErrCode |
This file contains 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
/* fcat: A file union server | |
* | |
* fcat <pipe_path> [<file 1> [<file 2> [...]]] | |
* | |
* This little program creates a pipe at pipe_path which acts like a file with | |
* the concatenated contents of a list o files. | |
* | |
* For debugging and troubleshooting purposes a small logging system is also | |
* provided. | |
* |