M: I looked around online, and wasn’t able to get a consistent answer; can you tell me if, in the current state of the PS five store set up, I would be able to find and play a copy of the DLC of asuras wrath
G: As of June 2025, playing the downloadable content (DLC) for Asura’s Wrath on a PlayStation 5 is not feasible through the current PlayStation Store setup. Here's a detailed breakdown:
The base game is accessible on PS5 via the PlayStation Plus Premium subscription, which offers streaming of select PS3 titles. However, this streaming service does not support DLC for PS3 games, including Asura’s Wrath. Consequently, the additional episodes—particularly Episodes 19–22, which provide the game's true ending—are not available when playing on PS5 through this method. citeturn0reddit14turn0reddit15
PlayStation 3: The most reliable method to access the DLC is by playing the game on a PS3 console. The DLC is still available for purchase on the PS3 PlayStation Store, allowing you to download and play the additional episodes. citeturn0reddit17
Xbox Consoles: Asura’s Wrath and its DLC are available on Xbox 360 and are backward compatible with newer Xbox consoles like the Xbox Series X/S. The game and its DLC are often on sale, making this a cost-effective alternative. citeturn0reddit19
Emulation: For those comfortable with emulation, the RPCS3 emulator allows you to play Asura’s Wrath on a PC. However, this method requires technical knowledge and access to the game's files and DLC, which may involve legal and ethical considerations.
Region Compatibility: Ensure that the region of your game disc matches the region of the DLC you intend to purchase. For instance, a Japanese game disc may not be compatible with DLC from the North American PlayStation Store. citeturn0reddit18
PS3 Store Accessibility: While the PS3 PlayStation Store is still operational, its future is uncertain. If you plan to access the DLC through this platform, it may be prudent to do so sooner rather than later.
To experience the full narrative of Asura’s Wrath, including the true ending provided by the DLC episodes, playing the game on a PS3 console remains the most straightforward method. Alternatively, Xbox consoles offer a viable option with backward compatibility and available DLC. Unfortunately, the PS5 does not currently support the DLC for this title due to limitations in streaming PS3 content.
If you need assistance with setting up a PS3, purchasing the game and DLC, or exploring other options, feel free to ask!
M: On the Lennox command line, is there a wild card selection sequence that means “not”? As in, the inverse of *.mp4 that would select every file that was not named as an MP4 file
G: Yes, in most Linux shells (like
bash), there's no direct glob (wildcard) syntax for "not
matching" (!*.mp4 does not work as you
might expect). But you can achieve this using shell constructs or
commands like find or extglob.
find (most robust)find . -maxdepth 1 -type f ! -name '*.mp4'*.mp4.bash extended globbing (enable with
shopt)shopt -s extglob
echo !(*.mp4)*.mp4,
but:
ls and
grepls | grep -v '\.mp4$'echo !*.mp4 → Expands to all files
except *.mp4 only if there are matches and
! is interpreted as history or glob depending on shell
config. It's not reliable.To operate on the results (e.g., rm, mv,
etc.), use find with -exec or
xargs.
Let me know if you want a recursive version or a variant for directories only.
M: How would I use find in a quick command line loop? Like the way I would use “for X in *.mp4”, but inverted
G: You can invert a
for loop over find results like this:
for x in $(find . -maxdepth 1 -type f ! -name '*.mp4'); do
echo "$x"
doneBut ⚠️ this breaks on filenames with spaces or
newlines. A safer, correct version uses a while
loop with read:
find . -maxdepth 1 -type f ! -name '*.mp4' -print0 | while IFS= read -r -d '' x; do
echo "$x"
doneUse this for safety:
find . -maxdepth 1 -type f ! -name '*.mp4' -print0 | while IFS= read -r -d '' x; do
echo "$x"
doneUse this for speed (unsafe with spaces):
for x in $(find . -maxdepth 1 -type f ! -name '*.mp4'); do
echo "$x"
doneLet me know if you want to loop recursively, or exclude multiple extensions.