Questions tagged [msys]
The msys tag has no summary.
26 questions
1 vote
1 answer
90 views
Is this a portable way to escape MSYS2's Linux paths?
MSYS2-built Linux applications internally rewrite Linux paths to Windows paths. This can be problematic if those are supposed to interface with other, proper-Linux applications (e.g. in my case, MSYS2 ...
1 vote
0 answers
53 views
Msys64/mingw64 trouble, why its 'ln' command did `copy`
On Msys2 env.: $ cd /c/msys64/mingw64/lib/ $ ln -s libz.dll.a libzlib.dll.a But confusingly why ln command did copy instead of linking it symbolically ? $ ls -l libz* -rw-r--r-- 1 abdu None 108700 ...
3 votes
2 answers
188 views
MinGW/MSys 2 doesn't seem to recognize TZ environment variable
I work on a legacy system originally written in C for 3b2 SVR3, later in C++ for Sun/Solaris, now mainly for Linux. We have a few users who require our apps to run on Windows Servers, so we have ...
0 votes
1 answer
106 views
package a single text file into a .deb (possibly on MSYS2/MINGW64)?
I have found a similar question on https://askubuntu.com/questions/144547/how-to-package-a-single-text-file-into-a-deb - unfortunately there is no answer I can use. Basically, I want to manage a text ...
0 votes
1 answer
193 views
tmux scrolling enabling fails in msys2
I recently started using tmux (in addition to screen), both in a Linux environment and in msys2 (which is also new to me and for which I cannot install screen). Very similar to screen, starting tmux ...
1 vote
0 answers
297 views
Tmux: Scroll buffer not working on MSYS2/MINGW64 (Git for Windows SDK)
I installed the Git for Windows SDK on Windows 11 to have the pacman package installer available to install tmux. A lot of stuff works like it used to be on other platforms, but scrolling back using ...
0 votes
1 answer
477 views
MSYS2: Command works fine in terminal, but syntax error `(' in script
On Windows, with MSYS2, I want to add the file extension for an executable back to the output of which, if it has one. Here's a one-liner: locAlt="$(which "mingw32-make")" ; echo &...
1 vote
1 answer
98 views
Is it possible to use the magnet uri scheme in PKGBUILDs?
Is it possible to use resources exchanged with the BitTorrent protocol in pacman's PKGBUILDs?
2 votes
1 answer
680 views
Exclude from rsync log file or output non-updated files
For rsyncs that involve a large number of potentially transferred files, I mean to have a "clean" log, with only what was transferred. I worked with stdout, since: I did not know how to ...
2 votes
1 answer
693 views
git-bash window title issue
I started a git-bash window, and type following commands : git-bash ~$ echo $BASH_VERSION 4.4.23(1)-release git-bash ~$ type cd cd is a shell builtin git-bash ~$ cd tmp git-bash ~/tmp$ # Change of ...
0 votes
0 answers
25 views
scp from remote to remote does not work if not using -3 [duplicate]
I mean to copy files from one remote server to another. If using scp -3, command succeeds (I have remote1 and remote2 in my ~/.ssh/config) $ scp -p -3 remote1:dir1/file1 remote2:dir2/ but when not ...
1 vote
1 answer
1k views
Is there a convenient way to test if a given flag is supported on a command?
Okay, so I'm kinda stumped here. I'm in the midst of a deep-dive into BASH, for the purposes of writing some automation scripts for my employer. Also, full disclosure here: I'm a web guy; hitherto I'...
-2 votes
1 answer
429 views
To count the number of occurrences of first field in text file [closed]
i require to count the number of occurrences of first field in txt file and to print output file as two column file having first field of input file & no. of occurrences of fist field in input ...
13 votes
5 answers
28k views
Handling Bash script with CRLF (carriage return) in Linux as in MSYS2?
Let's say I have the following trivial script, tmp.sh: echo "testing" stat . echo "testing again" Trivial as it is, it has \r\n (that is, CRLF, that is carriage return+line feed) as line endings. ...
1 vote
0 answers
987 views
Inspect/browse gzipped dd disk image from command line without decompressing and mounting?
I did a disk image, as per How to dd a remote disk using SSH on local machine and save to a local disk : ssh user@remote "dd if=/dev/sda | gzip -1 -" | dd of=image.gz` Now, I would just like to ...