mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Prior to this commit: ``` $ git grep '#!/usr/bin/env bash' | wc -l 8 $ git grep '#!/bin/bash' | wc -l 1 ``` After to this commit: ``` $ git grep '#!/usr/bin/env bash' | wc -l 9 $ git grep '#!/bin/bash' | wc -l 0 ```
4 lines
56 B
Bash
Executable File
4 lines
56 B
Bash
Executable File
#!/usr/bin/env bash
|
|
last_arg=${@: -1}
|
|
echo ${!last_arg}
|