About 50 results
Open links in new tab
  1. What are .xsh files? How to see its contents? - Unix & Linux Stack …

    Mar 9, 2019 · The synology ipkg installer bootstraps with a file, with name ending .xsh. How can I see what is inside such file?

  2. Why is XCU the abbreviation for "Shell and Utilities" and XSH the ...

    Aug 31, 2023 · POSIX is divided into 4 major volumes, and the abbreviations XBD, XSH, XCU and XRAT are used throughtout, respectively standing for "Base Definitions", "Shell and Utilities", …

  3. zsh: no such file or directory error even though the file exists

    Sep 28, 2023 · What does file ./hyperfine output? Did you build the binary yourself, or did you copy it over from somewhere? What architecture are you running on (the output of uname -m)?

  4. Why does opening new zsh terminal print environment vars

    Mar 28, 2023 · Each time I open a new terminal in Mac OS, it prints a selection (but not all) of my environment vars. I use zsh shell. e.g HOME=/Users/xxxx LANG=en_GB.UTF-8 LESS=-R …

  5. How to remove similar folder from multiple locations in terminal

    Your shell is presumably zsh, right? What is the output of running ps $$ in a terminal? Does that show /bin/bash or /bin/zsh?

  6. How do I zip/unzip on the unix command line?

    Jan 28, 2011 · For the record, use unzip -d myfolder squash.zip to extract into a separate new directory (myfolder) instead of putting all the files directly into the current directory, which can be annoying if …

  7. shell script - redirecting to /dev/null - Unix & Linux Stack Exchange

    I'm trying to understand the use of "> /dev/null 2>&1" here. (note that I added the redirection before /dev/null in your question.) The above would redirect the STDOUT and STDERR to /dev/null. It works …

  8. Is Linux a Unix? - Unix & Linux Stack Exchange

    Strictly speaking, Linux is an operating system kernel that is designed like Unix's kernel. Linux is most commonly used as a name of Unix-like operating systems that use Linux as their kernel. As many of …

  9. Shellscript to remove particular tags in HTML file

    Oct 22, 2015 · @Thiripu xsh is a shell scripting language, but unlike bash it is meant for working with XML (which also covers HTML)

  10. shell - sh + how to use array in sh script in order to print all values ...

    I want to use arrays in my sh script. My target is to create an array with the values a b c and print all values in the array. I succeeded to print each array, but I failed to print all values in...