msys

Is it possible to use the magnet uri scheme in PKGBUILDs?

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? Asked By: Scrooge McDuck || Source Yes. You just need to specify a magnet uri scheme download agent like transmission-makepkg in the makepkg configuration file: /etc/makepkg.conf ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ DLAGENTS+=(‘magnet::/usr/bin/transmission-makepkg %u %o’) …

Total answers: 1

git-bash window title issue

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 directory is NOT refelected on git-bash window title git-bash ~/tmp$ ssh user@linux [user@linux ~]$ echo $BASH_VERSION 4.4.20(1)-release [user@linux …

Total answers: 1

Handling Bash script with CRLF (carriage return) in Linux as in MSYS2?

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 rn (that is, CRLF, that is carriage return+line feed) as line endings. Since the webpage will not preserve the line endings, …

Total answers: 5